如何更改主题中的滚动条滑块颜色

如何更改主题中的滚动条滑块颜色

运行 Debian 11 和 xfce,我试图弄清楚如何更改默认滚动条滑块颜色,暗灰色不适合我。

编辑:好的,这有效:

scrollbar
{
    -XfceTasklist-min-button-length: 3000; 
    /* Needed or else no buttons! */
    -GtkScrollbar-has-backward-stepper: true;
    -GtkScrollbar-has-forward-stepper: true;
}
scrollbar slider { min-width: 20px; }
scrollbar button {padding: 6px}

/* dark green: pointer is not in the active window */
scrollbar slider:backdrop { background-color: #00aa00; }
scrollbar button:backdrop { color: #00aa00; }

/* green: pointer is in the active window but not on the slider/button */
scrollbar slider { background-color: #00ff00; } 
scrollbar button { color: #00ff00; }

/* dark red: pointer is hovering over slider/button, but mouse button not pressed */
scrollbar slider:hover { background-color: #aa0000; } 
scrollbar button:hover { color: #aa0000; }

/* red: slider/button is active */
scrollbar slider:hover:active { background-color: #ff0000; }
scrollbar button:active { color: #ff0000; }

/* slider maxed out, window active */
scrollbar button:disabled { color: white; }

/* slider maxed out, window inactive */
scrollbar button:backdrop:disabled { color: white; }

/* What is this? */
scrollbar button:checked { color: black; }

...欢迎任何评论或改进。

相关内容