Skip to content

Instantly share code, notes, and snippets.

@josemarcosrf
Last active March 4, 2021 15:42
Show Gist options
  • Save josemarcosrf/1e46624bc964eeebdf9a9f119a671271 to your computer and use it in GitHub Desktop.
Save josemarcosrf/1e46624bc964eeebdf9a9f119a671271 to your computer and use it in GitHub Desktop.
VSCode custom color settings collection to differentiate between multiple opened instances
{
// https://www.schemecolor.com/dysfunctional.php
"workbench.colorCustomizations": {
// activity bar
"activityBar.background": "#CE3C63",
"activityBar.inactiveForeground": "#c5c4c4",
"activityBar.activeBackground": "#FBE9B7",
"activityBar.activeBorder": "#04B9B0",
// badge
"activityBarBadge.background": "#04B9B0",
"activityBarBadge.foreground": "#434662",
"titleBar.activeBackground": "#ABB2BF",
"titleBar.activeForeground": "#df8a29",
// extra
"settings.modifiedItemIndicator": "#FBE9B7",
// Status Bar (bottom bar)
"[Firewatch Theme]": {
"statusBar.background": "#282C34",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#FBE9B7",
},
"[Primer Light]": {
"statusBar.background": "#F5F5F5",
"statusBar.foreground": "#6B6B6B",
"statusBar.noFolderBackground": "#474B7B",
"statusBar.debuggingBackground": "#FBE9B7",
}
},
// purple cream
"workbench.colorCustomizations": {
// activity bar
"activityBar.background": "#474B7B",
"activityBar.inactiveForeground": "#c5c4c4",
"activityBar.activeBackground": "#F7DF97",
"activityBar.activeBorder": "#F7B593",
// badge
"activityBarBadge.background": "#F7B593",
"activityBarBadge.foreground": "#434662",
"titleBar.activeBackground": "#ABB2BF",
"titleBar.activeForeground": "#df8a29",
// extra
"settings.modifiedItemIndicator": "#F7DF97",
// Status Bar (bottom bar)
"[Firewatch Theme]": {
"statusBar.background": "#282C34",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#F7DF97",
},
"[Primer Light]": {
"statusBar.background": "#F5F5F5",
"statusBar.foreground": "#6B6B6B",
"statusBar.noFolderBackground": "#474B7B",
"statusBar.debuggingBackground": "#F7DF97",
}
},
// bubble gum
"workbench.colorCustomizations": {
// activity bar
"activityBar.background": "#2b91c5",
"activityBar.inactiveForeground": "#fff6dd",
"activityBar.activeBackground": "#bee687",
"activityBar.activeBorder": "#61d195",
// badge
"activityBarBadge.background": "#ff88a4",
"activityBarBadge.foreground": "#616161",
"titleBar.activeBackground": "#ABB2BF",
"titleBar.activeForeground": "#ff88a4",
// extra
"settings.modifiedItemIndicator": "#616161",
// Status Bar (bottom bar)
"[Firewatch Theme]": {
"statusBar.background": "#282C34",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#ff88a4",
"activityBar.activeFocusBorder": "#ff0000"
},
"[Primer Light]": {
"statusBar.background": "#F5F5F5",
"statusBar.foreground": "#6B6B6B",
"statusBar.noFolderBackground": "#00a3a3",
"statusBar.debuggingBackground": "#ff88a4",
}
},
// mostaza
"workbench.colorCustomizations": {
// activity bar
"activityBar.background": "#DAA940",
"activityBar.inactiveForeground": "#6b6b6b",
"activityBar.activeBackground": "#D3652C",
"activityBar.activeBorder": "#DAA940",
// badge
"activityBarBadge.background": "#40b6da",
"activityBarBadge.foreground": "#616161",
"titleBar.activeBackground": "#ABB2BF",
"titleBar.activeForeground": "#df8a29",
// extra
"settings.modifiedItemIndicator": "#616161",
// Status Bar (bottom bar)
"[Firewatch Theme]": {
"statusBar.background": "#282C34",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#DAA940",
},
"[Primer Light]": {
"statusBar.background": "#F5F5F5",
"statusBar.foreground": "#6B6B6B",
"statusBar.noFolderBackground": "#00a3a3",
"statusBar.debuggingBackground": "#DAA940",
}
},
"python.pythonPath": "....."
}
@josemarcosrf
Copy link
Author

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