How to change the browser scroll bar look

Is it possible to change the look of a website browser scroll bar?

Handy little web app to style and generate css for your site

4 Likes

this works as well

* {
  scrollbar-width: thin;
  scrollbar-color: #0b93cd #363636;
}

edit

All elements except html and body get a thin scrollbar with the defined colors.
The main page scrollbar (html, body) stays at normal width but retains the same color.

*:not(html, body) {
  scrollbar-width: thin;
  scrollbar-color: #0b93cd #363636;
}

html, body {
  scrollbar-color: #0b93cd #363636;
}

thank you, all for your inputs