Created
January 30, 2024 21:21
-
-
Save hughc/4c0d7eca879729154678bbd8b8a7d6cf to your computer and use it in GitHub Desktop.
VsCode workspace settings - distinguish between multiple VSCode windows by colour coding their title and status bars
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorCustomizations": { | |
"titleBar.activeBackground": "#cacabc", | |
"titleBar.activeForeground": "#000", | |
"titleBar.inactiveBackground": "#cacabc", | |
"titleBar.inactiveForeground": "#cacabc", | |
"statusBar.foreground": "#222", | |
"statusBar.background": "#cacabc", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create a
.vscode
dir in the root of your project to hold this file. Don't forget to add it to your.gitignore
- friends don't let friends commit settings files.