Visual Studio Code status bar color

Shahzaib Rahim picture Shahzaib Rahim · Mar 14, 2017 · Viewed 53.3k times · Source

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.2 update.

Answer

acesmndr picture acesmndr · Apr 17, 2017

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"
}