scrollbar-color
Baseline 2025Newly available
Since December 2025, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Thescrollbar-colorCSS property sets the color of the scrollbar track and thumb.
Thetrack refers to the background of the scrollbar, which is generally fixed regardless of the scrolling position.
Thethumb refers to the moving part of the scrollbar, which usually floats on top of the track.
Whenscrollbar-color value is set on the document's root element, the values are applied to the viewport scrollbars.
In this article
Syntax
/* Keyword values */scrollbar-color: auto;/* <color> values */scrollbar-color: rebeccapurple green; /* Two valid colors.The first applies to the thumb of the scrollbar, the second to the track. *//* Global values */scrollbar-color: inherit;scrollbar-color: initial;scrollbar-color: revert;scrollbar-color: revert-layer;scrollbar-color: unset;Values
<scrollbar-color>Defines the color of the scrollbar.
autoDefault platform rendering for the track portion of the scrollbar, in the absence of any other related scrollbar color properties. <color> <color>Applies the first color to the scrollbar thumb, the second to the scrollbar track.
Note:@media (forced-colors: active) setsscrollbar-color toauto.
Accessibility
When usingscrollbar-color property with specific color values, authors should ensure the specified colors have enough contrast between them. For keyword values, UAs should ensure the colors they use have enough contrast. SeeTechniques for WCAG 2.0: G183: Using a contrast ratio of 3:1.
Formal definition
| Initial value | auto |
|---|---|
| Applies to | scrolling boxes |
| Inherited | yes |
| Computed value | as specified |
| Animation type | by computed value type |
Formal syntax
scrollbar-color =
auto|
<color>{2}
Examples
>Coloring overflow scrollbars
CSS
.scroller { width: 300px; height: 100px; overflow-y: scroll; scrollbar-color: #000077 #bada55;}HTML
<div> Veggies es bonus vobis, proinde vos postulo essum magis kohlrabi welsh onion daikon amaranth tatsoi tomatillo melon azuki bean garlic. Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato. Dandelion cucumber earthnut pea peanut soko zucchini.</div>Result
Specifications
| Specification |
|---|
| CSS Scrollbars Styling Module Level 1> # scrollbar-color> |