Visual Studio Code status bar color

后端 未结 9 2165
长发绾君心
长发绾君心 2021-01-29 19:52

Visual Studio Code\'s default status bar color is blue and I find it quite distracting. I used this extension to change the color but it has stopped working after the 1.10

9条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-29 20:22

    You can change the colour of the statusbar by editing the user settings by adding these lines of code in it:

    "workbench.colorCustomizations": {
        "statusBar.background" : "#1A1A1A",
        "statusBar.noFolderBackground" : "#212121",
        "statusBar.debuggingBackground": "#263238"
    }
    

提交回复
热议问题