我已经将VSCode主题设置成了浅色,可是侧边栏仍然是灰色,以下图所示。
那怎么将左边的工具栏也设置成白色呢?咱们能够使用【ctrl +shift +p】快捷键输入【setting】而后选择【Open Setting(Json)】打开setting.json文件,而后添加以下内容。json
"workbench.colorCustomizations": { "[Default Light+]": { "activityBar.activeBackground": "#ffffff", "activityBar.background": "#eeeeee", "activityBar.foreground": "#000000" } }, "workbench.colorTheme": "Default Light+"
而后,保存便可。工具