In the menu choose the folders you want to add/remove
This extension contributes the following settings:
colorTabs.config: list of mappings from path to color
"default":
[
{
"regex": ".*\/web\/.*"
},
{
"regex": ".*\/mobile\/.*"
}
]colorTabs.statusBarBackground: Enable statusBar background coloring. default totruecolorTabs.tabBorder: Enable tab border coloring. default totruecolorTabs.titleBackground: Enable title background coloring. default tofalsecolorTabs.activityBarBackground: Enable activityBar background coloring. default tofalsecolorTabs.titleLabel: Enable title label. default tofalsecolorTabs.ignoreCase: Ignore case while matching Regex. default tofalse
If you'd like to choose the colors yourself, and/or add a label (which is presented at the top window bar).
Note - you can mix the configuration, placing colors in some, and not in others.
An advanced workspace.settings example :
"colorTabs.config": [
{
"regex": ".*\/mobile\/.*",
"color": "#FF0000",
"label": "MOBILE"
},
{
"regex": ".*\/web\/.*",
"color": "#00FF00",
},{
"regex": ".*\/desktop\/.*"
},
]
"colorTabs.titleBackground": true
"colorTabs.ignoreCase": true -
[0.12.0]
- Ability to add/remove/clear the current file directly from the menu palette - PR #36

- Ability to add/remove/clear the current file directly from the menu palette - PR #36
-
[0.10.0]
- Stop writing an empty object to settings when colorTabs doesn't find any regex mapping - PR #36
-
[0.9.0]
- Added
colorTabs.ignoreCaseconfiguration, defaults tofalse- PR #29
setcolorTabs.ignoreCasetotruein your workspace settings to get this new feature.
- Added
-
[0.8.0]
- Introducing
AutoColoring- You no longer need to provide a list of colors to map to,ColorTabswill generate consistent colors for your list of regular expressions. This configuration is enough:
{ "colorTabs.config": [ { "regex": ".*/web/.*", }, { "regex": ".*/mobile/.*", } ] } - Introducing
-
[0.6.0]
-
ColorTabs now changes the color of your status bar (set to
trueby default) - PR #10.
setcolorTabs.statusBarBackgroundtotruein your workspace settings to get this new feature. -
ColorTabs can now change the color of your activity bar (Left side bar) - PR #10.
setcolorTabs.activityBarBackgroundtotruein your workspace settings to get this new feature.
-
-
[0.5.0]
- ColorTabs can now add a label to your title background as well - PR #4.
setcolorTabs.titleLabeltotruein your workspace settings to get this new feature. Example (withmobilelabel):
- ColorTabs can now add a label to your title background as well - PR #4.
-
[0.4.4]
- ColorTabs can now color your title background as well - PR #2.
setcolorTabs.titleBackgroundtotruein your workspace settings to get this new feature. Example:
- ColorTabs can now color your title background as well - PR #2.
- This plugin writes to your vscode workspace
settings.json, this means that it creates a git commit. To avoid pushing this change, you should have your.vscodedirectory in.gitignore. Currently writing to thesettings.jsonis the only way to manipulate the colors in runtime.

