修改vscode底部栏颜色
- 首先打开齿轮,打开设置
- 搜索workbench.colorCustomizations,然后点击编辑setting.json

- 修改setting.json内内容

- 修改成自己的颜色,这里选择于顶部栏的颜色#333333, 这样会比较协调
- 在 workbench.colorCustomizations中添加三行代码即可
{
"files.autoGuessEncoding": true,
"workbench.startupEditor": "newUntitledFile",
"editor.mouseWheelZoom": true,
"editor.linkedEditing": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"files.autoSave": "onFocusChange",
"workbench.colorTheme": "Visual Studio Dark",
"workbench.iconTheme": "vscode-icons",
"editor.wordWrap": "on",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"workbench.colorCustomizations": {
"statusBar.background": "#333333",
"statusBar.noFolderBackground": "#333333",
"statusBar.debuggingBackground": "#333333"
}
}
