Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@lumpysimon
Last active June 15, 2020 14:32
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 lumpysimon/bdc2159a1eb49f702e4db2a9bbddfd89 to your computer and use it in GitHub Desktop.
Save lumpysimon/bdc2159a1eb49f702e4db2a9bbddfd89 to your computer and use it in GitHub Desktop.
VS Code workplace settings with title bar colouring
{
"folders": [
{
"path": "/path/to/my/workspace/folder"
}
],
"settings": {
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#d12229",
"titleBar.activeForeground": "#ffffff",
"titleBar.inactiveBackground": "#811519",
"titleBar.inactiveForeground": "#cccccc"
}
}
}
@lumpysimon
Copy link
Author

Currently this only works on MacOS

@thetwopct
Copy link

Is this still working for you? I can't see to get it working on the latest VS Code

@thetwopct
Copy link

Probably should have just read the docs, this worked for me, can be set in workspace settings so its per workspace

{
  "workbench.colorCustomizations": {
      "titleBar.activeBackground": "#de176c",
      "titleBar.inactiveBackground": "#c2638b",
      "titleBar.inactiveForeground": "#cccccc"
  }
}

@lumpysimon
Copy link
Author

glad you got it working :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment