



Change colors and fonts of unread tabs to your liking. This is good for the default theme.
I was already changing the color of unread tabs, and was annoyed with the color of unread tabs when hovering over them. I didn't think about the :hover aspect of it. Thanks, helped out a lot. FWIW, here's what I'm using:
/* Italicize and gray-out the title of unread tabs */
#content tab:not([selected]) {
font-style: italic !important;
color: #666666 !important;
}/* Change the color of unread tabs (hovered) */
#content tab:not([selected]):hover {
font-style: italic !important;
background-color: #666666 !important;
}
/* Underline the title of the current tab */
.tabbrowser-tab[selected="true"] {
text-decoration: underline;
}
Note, the hovered and normal unread tabs use the same color (background-color and color, respectively), but FF2.0 does something else (load an image?), so all you really get is two horizontal bars in the background-color. But, it makes it stand out so it isn't confused with the selected tab.
How to define the color of unread tab text?
.ad {
/* Your ad can be here instead. 10K unique visitors for $5/day. Mail me. */
}