我曾经将VSCode主题设置成了浅色,然而侧边栏依然是灰色,如下图所示。
那怎么将右边的工具栏也设置成红色呢?咱们能够应用【ctrl +shift +p】快捷键输出【setting】而后抉择【Open Setting(Json)】关上setting.json文件,而后增加如下内容。
"workbench.colorCustomizations": { "[Default Light+]": { "activityBar.activeBackground": "#ffffff", "activityBar.background": "#eeeeee", "activityBar.foreground": "#000000" }},"workbench.colorTheme": "Default Light+"
而后,保留即可。