Visual Studio Code status bar color

后端 未结 9 1988
长发绾君心
长发绾君心 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条回答
  •  闹比i
    闹比i (楼主)
    2021-01-29 20:46

    Since every theme is so different, you probably don't want to make changes like this globally. Instead, specify them on a per-theme basis: e.g.:

    "workbench.colorCustomizations": {
        "[Some Theme Name]": {
            "statusBar.background" : "#486357",
            "statusBar.foreground" : "#c8e9c5",
        },
        "[Some Other Theme Name]": {
            "statusBar.background" : "#385357",
            "statusBar.foreground" : "#d7e9c4",
        }
    },
    

    That way when you switch between your favorite themes, your customizations of them will not be forgotten, and will make sense in that context.

提交回复
热议问题