Marco
Marco

Reputation: 321

How do I change the color of the vertical scroll bar on the right side of VScode?

I used a dark theme, but it was too subtle!

enter image description here

Upvotes: 31

Views: 10371

Answers (1)

carlfriedrich
carlfriedrich

Reputation: 4093

You can customize your theme colors.

Press Ctrl+Shift+P to bring up the command palette and run the Preferences: Open User Settings (JSON) command. Add the following lines to your configuration:

"workbench.colorCustomizations": {
    "scrollbarSlider.background": "#ff0000",
},

This will change the scrollbar slider color to red. Adjust the colour value as you like. See more colour options for the scrollbar here.

Upvotes: 56

Related Questions