VS Code customize file explorer window color theme

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

For example, when using the built-in High Contrast color theme, I can see that the file explorer and line number colors are different. But I can't find a way to customize the colors when using an extension color theme, like the material-theme.


From your 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",
"editorLineNumber.activeForeground": "#ff6a00",

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


这还没有实现,投票GitHub问题上的功能请求。

链接地址: http://www.djcxy.com/p/91514.html

上一篇: 将透视图缓存从一个文件的透视转移到另一个透视上?

下一篇: VS代码自定义文件浏览器窗口颜色主题