How can I change the scrollbar color?

I want to change it but I couldn’t find the property for it in tau css.

1 Like

According to some long researches I did, you cannot change the color, because it is part of the tizen engine… Thats the answer I found. But I think there is a way, i just havent figured out how yet… If you do please let me know lol…

1 Like

This one hides the scrollbar just like in chrome
::-webkit-scrollbar { display: none; }

1 Like

Couldn’t find any solution so I created it myself
Add this [edit: link to https://gist.githubusercontent.com/gitDominatezz/6adfb647c67f7835c807d510723dc244/raw/f04502abd485bcd59061fdd65c57df9727441f73/customtauscrollbar.js no longer works, reformatted to not autolink] script at the end of your body

GitHub page: [edit: link to https://gist.github.com/gitDominatezz/6adfb647c67f7835c807d510723dc244 no longer works, reformatted to not autolink]

1 Like

The scrollbar - color CSS property sets the color of the scrollbar track and thumb. The track refers to the background of the scrollbar , which is generally fixed regardless of the scrolling position. The thumb refers to the moving part of the scrollbar , which usually floats on top of the track.

I’m creating a Web App (with TAU) and I’m facing the same issue.
I made a menu option to change the theme of my app and it’s annoying that I’m able to customise every bit of the interface except that damn blue thumb on the scrollbar.
Has anybody found a solution yet ?