# darkify/1.5.5/src/Frontend/Templates/views/scrollbar.php

Darkify – Dark Mode &amp; Night Mode for Website &amp; Admin (Dark Theme Included), version 1.5.5. 39 lines.

- Page: https://pluginprobe.com/plugins/darkify/1.5.5/code/src/Frontend/Templates/views/scrollbar.php
- Raw: https://pluginprobe.com/plugins/darkify/1.5.5/raw/src/Frontend/Templates/views/scrollbar.php
- Modified: 2026-06-24T05:50:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/darkify/1.5.5/code/src/Frontend/Templates/views/scrollbar.php#L10-L20`.

```php
<?php 
// don't call the file directly.
if (!defined('ABSPATH')) {
    exit;
}
?>

<style type="text/css" class="darkify_inline_css">
    .darkify_dark_mode_enabled::-webkit-scrollbar {
        background: <?php echo esc_attr($dark_mode_scrollbar_track_bg); ?> !important;
    }
    .darkify_dark_mode_enabled::-webkit-scrollbar-track {
        background: <?php echo esc_attr($dark_mode_scrollbar_track_bg); ?> !important;
    }
    .darkify_dark_mode_enabled::-webkit-scrollbar-thumb {
        background-color: <?php echo esc_attr($dark_mode_scrollbar_thumb_bg); ?> !important;
    }
    .darkify_dark_mode_enabled::-webkit-scrollbar-corner {
        background-color: <?php echo esc_attr($dark_mode_scrollbar_thumb_bg); ?> !important;
    }
    .darkify_dark_mode_enabled::-webkit-scrollbar-button {
        background-color: transparent !important;
        background-repeat: no-repeat !important;
        background-size: contain !important;
        background-position: center !important;
    }
    .darkify_dark_mode_enabled::-webkit-scrollbar-button:start {
        background-image: url(<?php echo esc_url(DARKIFY_DIR_URL . "src/assets/img/others/scroll_arrow_up.svg"); ?>) !important;
    }
    .darkify_dark_mode_enabled::-webkit-scrollbar-button:end {
        background-image: url(<?php echo esc_url(DARKIFY_DIR_URL . "src/assets/img/others/scroll_arrow_down.svg"); ?>) !important;
    }
    .darkify_dark_mode_enabled::-webkit-scrollbar-button:start:horizontal {
        background-image: url(<?php echo esc_url(DARKIFY_DIR_URL . "src/assets/img/others/scroll_arrow_left.svg"); ?>) !important;
    }
    .darkify_dark_mode_enabled::-webkit-scrollbar-button:end:horizontal {
        background-image: url(<?php echo esc_url(DARKIFY_DIR_URL . "src/assets/img/others/scroll_arrow_right.svg"); ?>) !important;
    }
</style>
```
