>>900
cssで色を変えることもできる

/* アクティブなウィンドウのスクロールバーの色 */
@namespace url("http://www.w3.org/1999/xhtml";);
:root{
scrollbar-color: blue gray !important;
scrollbar-width: thin !important;
}

* {
scrollbar-width: thin !important;
}

/* 非アクティブなウィンドウのスクロールバーの色 */
:root:-moz-window-inactive{
scrollbar-color: #4c4cff #f2f3f6 !important;
scrollbar-width: thin !important;
}