修改VScode底部状态栏颜色

  1. 点击齿轮进入setting
  2. 搜索workbench.colorCustomizations,然后点击编辑setting.json
  3. 修改为你喜欢的颜色即可,我这里修改为蓝色
    例子:
    "workbench.colorCustomizations": {
        "statusBar.background" : "#008cff",
        "statusBar.noFolderBackground" : "#008cff",
        "statusBar.debuggingBackground": "#008cff"
    }

原文地址:https://www.cnblogs.com/shmebluk/p/13783455.html