VSCode截图
 
相信很多小伙伴被底部的蓝色状态栏困扰很久了
 处理的方式有两种:
 1、隐藏状态栏
 2、修改其背景颜色
 第一种方法大伙都会,今天就使用第二种方法。
 1、点击齿轮进入setting
 2、我现在用的新版本,设置不是以前那种json格式展示,可以先搜索“workbench.colorCustomizations”
 3、在结果处点击Edit in setting.json
 4、输入以下json,当然你也可以定制自己喜欢的颜色
 “workbench.colorCustomizations”: {
 “statusBar.background” : “#1A1A1A”,
 “statusBar.noFolderBackground” : “#0A0A0D”,
 “statusBar.debuggingBackground”: “#511f1f”
 }
 • 1
 • 2
 • 3
 • 4
 • 5
 
 
原文:https://www.jianshu.com/p/b32a8731e55f