vscode-更改当前文件的突出显示颜色

时间:2018-10-23 07:40:40

标签: css visual-studio-code vscode-settings

如何为打开的文件的背景( fetch.js 后的浅灰色)的背景添加自定义样式:

enter image description here

2 个答案:

答案 0 :(得分:2)

我相信您正在寻找list.inactiveSelectionBackground主题设置。您可以使用workbench.colorCustomizations

进行设置
"workbench.colorCustomizations": {
    "list.inactiveSelectionBackground": "#f0f"
}

enter image description here

浏览器未聚焦时使用的此颜色。使用list.activeSelectionBackground来确定资源管理器的焦点

答案 1 :(得分:-1)

我认为您可以在这里找到解决此问题的方法:

Visual Studio - Current file in Solution Explorer - Make it darker?