Marcelo Mason
Marcelo Mason

Reputation: 7070

How can I change the scrollbar separator color in vscode?

vscode scrollbar

Need to change this color, its not one of the options provided for scrollbar theming. Is it hiden someplace else?

Scroll Bar Control
scrollbar.shadow: Scroll Bar shadow to indicate that the view is scrolled.
scrollbarSlider.activeBackground: Slider background color when active.
scrollbarSlider.background: Slider background color.
scrollbarSlider.hoverBackground: Slider background color when hovering.

Upvotes: 3

Views: 4220

Answers (2)

aero
aero

Reputation: 41

To change the colour of the separator, you can add this to settings.json:

"workbench.colorCustomizations": {
    "editorOverviewRuler.border": "#191C22"
}

Upvotes: 4

Alex
Alex

Reputation: 67799

settings.json:

"editor.overviewRulerBorder": false

Upvotes: 9

Related Questions