0
点赞
收藏
分享

微信扫一扫

VSCode侧边工具栏设置为白色


我已经将VSCode主题设置成了浅色,但是侧边栏仍然是灰色,如下图所示。

VSCode侧边工具栏设置为白色_json


那怎么将左边的工具栏也设置成白色呢?我们可以使用【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+"

然后,保存即可。

VSCode侧边工具栏设置为白色_json_02


举报

相关推荐

0 条评论