Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 978
Marco Avatar asked Sep 02 '25 02:09

Marco


1 Answers

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.

like image 51
carlfriedrich Avatar answered Sep 05 '25 20:09

carlfriedrich