Skip to content

Instantly share code, notes, and snippets.

@fatihturan
Last active October 21, 2018 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatihturan/5ad6b348d9a202400ca7702ca8d3943e to your computer and use it in GitHub Desktop.
Save fatihturan/5ad6b348d9a202400ca7702ca8d3943e to your computer and use it in GitHub Desktop.
VS Code — Change the Blue Statusbar Background with New One
"workbench.colorCustomizations": {
"[Default Dark+]": {
"statusBar.background" : "#333333",
"statusBar.foreground" : "#ADADAD",
"statusBar.noFolderBackground" : "#333333",
"statusBar.debuggingBackground": "#333333"
},
"[Visual Studio Dark]": {
"statusBar.background" : "#333333",
"statusBar.foreground" : "#ADADAD",
"statusBar.noFolderBackground" : "#333333",
"statusBar.debuggingBackground": "#333333"
},
"[Default Light+]": {
"editor.lineHighlightBackground": "#f1f1f1",
"statusBar.background" : "#ECECEC",
"statusBar.foreground" : "#666",
"statusBar.noFolderBackground" : "#ECECEC",
"statusBar.debuggingBackground": "#ECECEC"
},
"[Visual Studio Light]": {
"editor.lineHighlightBackground": "#f1f1f1",
"statusBar.background" : "#ECECEC",
"statusBar.foreground" : "#666",
"statusBar.noFolderBackground" : "#ECECEC",
"statusBar.debuggingBackground": "#ECECEC"
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment