如何修改 VSCode 底部状态栏的颜色
Posted on Wed, 25 Dec 2024 16:14:37 +0800 by LiangMingJian
如何修改 VSCode 底部状态栏的颜色
实现
在 VSCode 设置中搜索workbench.colorCustomizations
,然后点击在setting.json
中进行编辑修改。
{
"workbench.colorCustomizations": {
"statusBar.background" : "#008cff",
"statusBar.noFolderBackground" : "#008cff",
"statusBar.debuggingBackground": "#008cff",
},
}