VS Code自定义文件浏览器窗口颜色主题

时间:2016-04-29 15:18:48

标签: visual-studio-code vscode-extensions

有没有人知道如何在VS Code中自定义文件资源管理器窗口颜色主题?另外如何自定义行号的颜色?

例如,使用内置的高对比度颜色主题时,我可以看到文件浏览器和行号颜色不同。但是在使用扩展颜色主题时,我找不到一种自定义颜色的方法,比如材质主题。

3 个答案:

答案 0 :(得分:6)

settings.json Ctrl +

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

文件资源管理器使用sidebarlist颜色。

行号的颜色:

"editorLineNumber.foreground": "#41a6d9",
"editorLineNumber.activeForeground": "#ff6a00",

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

答案 1 :(得分:1)

尚未实施,请对GitHub Issue上的功能请求进行投票。

答案 2 :(得分:1)

enter image description here

假设您要在其中获得白色的侧边栏和黑色的文本,则需要像下面这样编辑您的settings.json:

"workbench.colorCustomizations": {
"sideBar.background": "#ffffff",
"sideBar.foreground": "#000000",
"list.hoverForeground": "#ffffff" 
}