xthezealot/white-theme-vscode

Support for inverted tabs color

Closed this issue Β· 7 comments

Would be cool if we can add an option for inverted tabs color, so instead of white background color on dark theme, these should be dark

Do you mean something like this ?

capture d ecran 2018-03-20 a 22 49 53

Yeah, something like that would be cool

So you can just add this to your settings.json file:

"workbench.colorCustomizations": {
  "[White Night]": {
    "tab.activeBackground": "#000",
    "tab.activeForeground": "#fff"
  }
}

Making a custom configuration key would be overcomplicated.

Whoah, that was superb πŸ‘thank you
have u plans to add apex like tabs?
image
with these minimal border color and variations?

I'd like to!

But actually, VS Code only allows color tweaking.
Without a full control over the CSS, it's impossible. πŸ˜•

I just found "tab.activeBorder" so I ended with something like this

"[White]": {
            "tab.activeBackground": "#fff",
            "tab.activeForeground": "#000",
            "tab.activeBorder": "#000"
        },

image
but I dont know if this can be shipped with the theme 😞

Personally, I think this 1px border is too thin.
I'll wait for full customization capabilities before doing it. ⏳