Making a Different Color Scrollbar

.

Is there a way to turn the Anki (version 25.09.4) Scrollbar a different color - I have a terrible time trying to find it!

You can use any add-on that provides css injection functionality (this one will do), and add the following rules (adjust the colors accordingly):

::-webkit-scrollbar-thumb {
  background: purple !important;
}

::-webkit-scrollbar-track {
  background: gold !important;
}

Thank you very much - I’ll give it a try!!!