vscode - 改变当前文件的高亮颜色
vscode - change highlight color of current file
如何为打开文件的背景添加自定义样式(fetch.js后面的浅灰色):
我认为您可以在这里找到解决此问题的方法:
Visual Studio - Current file in Solution Explorer - Make it darker?
我相信您正在寻找 list.inactiveSelectionBackground
主题设置。您可以使用 workbench.colorCustomizations
进行设置
"workbench.colorCustomizations": {
"list.inactiveSelectionBackground": "#f0f"
}
资源管理器未聚焦时使用的颜色。当浏览器聚焦时使用 list.activeSelectionBackground
突出显示当前文件tab on top -
在设置下-->“workbench.colorCustomizations”,给选项卡边框添加一些颜色and/or给选项卡背景:
"tab.activeBorder": "#ff0000",
"tab.unfocusedActiveBorder": "#000000",
"tab.activeBackground": "#4a4a75",
"tab.unfocusedactiveBackground": "#000000"
如何为打开文件的背景添加自定义样式(fetch.js后面的浅灰色):
我认为您可以在这里找到解决此问题的方法:
Visual Studio - Current file in Solution Explorer - Make it darker?
我相信您正在寻找 list.inactiveSelectionBackground
主题设置。您可以使用 workbench.colorCustomizations
"workbench.colorCustomizations": {
"list.inactiveSelectionBackground": "#f0f"
}
资源管理器未聚焦时使用的颜色。当浏览器聚焦时使用 list.activeSelectionBackground
突出显示当前文件tab on top -
在设置下-->“workbench.colorCustomizations”,给选项卡边框添加一些颜色and/or给选项卡背景:
"tab.activeBorder": "#ff0000",
"tab.unfocusedActiveBorder": "#000000",
"tab.activeBackground": "#4a4a75",
"tab.unfocusedactiveBackground": "#000000"