如何使用 settings.json 更改 vscode 标签栏的背景颜色
How to change the background color of the tab bar of vscode using settings.json
我一直在按照 Coder Coder 的教程进行操作,以使我的 vscode 看起来更好(教程 link https://youtu.be/pGzssFNtWXw). As per the video I've opened the settings.json file and just wrote some code But when I can't be able to find the code to change the background of the tab-bar.()
这是我试过的方法:
"tab.background" : "#000000"
代码如下:
"workbench.colorCustomizations": {
"editor.background": "#000814",
"sideBar.background": "#000d20",
"sideBarTitle.foreground": "#ffd60a",
"sideBarSectionHeader.foreground": "#ffd60a",
"activityBar.activeBackground": "#ffea81d5",
"activityBar.background": "#22223b",
"statusBar.background": "#ffd60a",
}
这也是我遇到的问题,但我发现要更改 settings.json 中标签栏的颜色,您必须使用 editorGroupHeader.tabsBackground
命令
我一直在按照 Coder Coder 的教程进行操作,以使我的 vscode 看起来更好(教程 link https://youtu.be/pGzssFNtWXw). As per the video I've opened the settings.json file and just wrote some code But when I can't be able to find the code to change the background of the tab-bar.(
这是我试过的方法:
"tab.background" : "#000000"
代码如下:
"workbench.colorCustomizations": {
"editor.background": "#000814",
"sideBar.background": "#000d20",
"sideBarTitle.foreground": "#ffd60a",
"sideBarSectionHeader.foreground": "#ffd60a",
"activityBar.activeBackground": "#ffea81d5",
"activityBar.background": "#22223b",
"statusBar.background": "#ffd60a",
}
这也是我遇到的问题,但我发现要更改 settings.json 中标签栏的颜色,您必须使用 editorGroupHeader.tabsBackground
命令