Use different Quote Level Colors in Mozilla Thunderbird
by Sanju[ Edit ] 2010-02-12 16:31:26
Use different Quote Level Colors
This tip is very useful because it adds different colors of both the text and background of different quote levels in messages. This makes it much easier to follow a long discussion in newsgroups for example, where the level of reply quotes can go very deep.
Of course, you can customize the colors in the code below to your own liking. Add the following code to your userContent.css file:
/* Quote Levels Colors */
blockquote[type=cite] {
color: navy !important; background-color: RGB(245,245,245) !important;
}
blockquote[type=cite] blockquote {
color: maroon !important; background-color: RGB(235,235,235) !important;
}
blockquote[type=cite] blockquote blockquote {
color: green !important; background-color: RGB(225,225,225) !important;
}
blockquote[type=cite] blockquote blockquote blockquote {
color: purple !important; background-color: RGB(215,215,215) !important;
}
blockquote[type=cite] blockquote blockquote blockquote blockquote {
color: teal !important; background-color: RGB(205,205,205) !important;
}