eoger / tabcenter-redux

Vertical Tabs extension for Firefox
Mozilla Public License 2.0
381 stars 67 forks source link

Modifying tabs example #407

Open zeroibis opened 5 years ago

zeroibis commented 5 years ago

I wanted to post an example of modifying the tabs for those who need help. In my case I installed this on a new computer but the new version drastically changed the way that tabs look in the dark theme. I wanted the old colors back and below is an example of how to change the default tab color, the selected tab color and the color when you hover over a tab. Now you can easily customize the colors to your liking.

body.dark-theme .tab:not(.active) { background-color: #272b35; } body.dark-theme .tab:not(.active):hover { background-color: #2f3a54; } body.dark-theme .tab.active { background-color: #314877; }