VS code customize Explorer window color theme

Does anyone know how to customize the file explorer window color theme in VS Code? Also how to adjust the color of line numbers?

For example, when using the built-in High Contrast color theme, I can see that the colors of the file explorer and line numbers are different. But I can’t find a way to adjust the colors when using the color theme of the extension, for example, a material theme.

+6
source share
2 answers

It's not yet implemented, vote for feature request on GitHub issue .

+1
source

From settings.json Ctrl + ,

"workbench.colorCustomizations": { "sideBar.background": "#424d66", "list.hoverBackground": "#41a6d9", } 

File explorer uses sidebar and list colors.

Color of line numbers:

 "editorLineNumber.foreground": "#41a6d9" 

https://code.visualstudio.com/docs/getstarted/theme-color-reference#_editor-colors

+1
source

All Articles