horst3180 / arc-firefox-theme

Arc Firefox Theme
Mozilla Public License 2.0
937 stars 48 forks source link

Text of active tabs is unreadable #111

Open soc opened 7 years ago

soc commented 7 years ago

Might be related to https://github.com/horst3180/arc-firefox-theme/issues/110.

Not sure if this happens with "standard" style tabs, but tree style tabs suffer the issue that the text on active tabs is unreadable due to the light background color: https://i.imgur.com/JhKVwAW.png

soc commented 7 years ago

I think I found the culprit:

.tabbrowser-tabs:not([treestyletab-tabbar-position="top"])
  .tabbrowser-tab:not([pinned])[visuallyselected="true"],
.tabbrowser-tabs:not([treestyletab-tabbar-position="top"])
  .tabbrowser-tab[pinned][visuallyselected="true"] {
    background-color: var(--tst-tab-surface-selected) !important;
}

I guess this theme needs to define its own value for --tst-tab-surface-selected.