How to change visual studio sidebar file highlight/selection color?
You can customize your active Visual Studio Code color theme with the workbench. colorCustomizations user setting. Note: If you want to use an existing color theme, see Color Themes where you'll learn how to set the active color theme through the Preferences: Color Theme dropdown (Ctrl+K Ctrl+T).
Change The Status Bar Color Open Command Palette (press “Command” + “Shift” + “P” on Mac and “Ctrl” + “Shift” + “P” on Windows), search for “settings. json” and select “Preferences: Open Settings (JSON)” from the result list.
Use list
.
Go to User Settings
, add these lines:
"workbench.colorCustomizations": {
"list.hoverBackground": "#535353",
"list.activeSelectionBackground": "#fff",
"list.activeSelectionForeground": "#000",
...
}
There are many configuration for list
, for example "list.hoverBackground": "#535353"
set highlight color while your hover on it, "list.activeSelectionBackground": "#fff"
set highlight color after you select/click one file, "list.activeSelectionForeground": "#000"
set font color of the selected item right after you select/click it.
You should explore the rest of them and don't forget to read the description for each configuration, type ctrl+space
on each configuration to read the description.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With