Visual Studio Code status bar color

后端 未结 9 1991
长发绾君心
长发绾君心 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: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.

    0 讨论(0)
  • 2021-01-29 20:46

    if you are using vimvscode plugin , the best way to change status bar color depending on mode is to go to settings , search for "status bar color" and check "allow vscode to change color based on mode"

    Here is a snapshot of vimvscode's plugin status color control:

    0 讨论(0)
  • 2021-01-29 20:47

    You can change the color by edit extensions:

     "colors":{
            "statusBar.background": "#505050",
        },
    
    0 讨论(0)
提交回复
热议问题