mondersky / tabscolor-vscode

change the color of vscode tabs
https://marketplace.visualstudio.com/items?itemName=mondersky.tabscolor
MIT License
50 stars 10 forks source link

Weird drop shadow #39

Open dimateos opened 4 days ago

dimateos commented 4 days ago

The tabs have this weird drop shadow (affects all themes) -> probably ok to simply add display: none; ? image

EDIT: this does the trick for example .monaco-icon-label-container::after { display: none !important; }

mondersky commented 1 day ago

what is the name of your vs code theme ?

dimateos commented 1 day ago

The default one with some color customizations

It looks like the drop shadow is related with the default tab color as these affect it:

"workbench.colorCustomizations": {
    "tab.inactiveBackground": "#ffffffb0",
    "tab.activeBackground": "#007acc48",
 }

I guess is something they added on top of the base backround color for pinned/read-only tabs, but weirdly it also shows for regular tabs. IMO we either modify its color or hide it as I said