테마에서 스크롤바 슬라이더 색상을 변경하는 방법

테마에서 스크롤바 슬라이더 색상을 변경하는 방법

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; }

...어떤 의견이나 개선사항이라도 환영합니다.

관련 정보