Recolored thread header icons in userChrome

Discussion of general topics about Mozilla Thunderbird
Post Reply
Shemja
Posts: 103
Joined: January 19th, 2011, 11:35 am

Recolored thread header icons in userChrome

Post by Shemja »

Finally figured out how to make my thread column header icons a color I can see on my dark background. Sharing for anyone else who might be looking for how to do this in userChrome. Replace Cyan with your color of choice.

Note that subjectCol, correspondentCol, and dateCol will recolor the words in the header.

Code: Select all

#unreadButtonColHeader {
	color: Cyan !important;
}

#selectCol {
	color: Cyan !important;
}

#deleteCol {
	color: Cyan !important;
}

#threadCol {
	color: Cyan !important;
}

#attachmentCol {
	color: Cyan !important;
}

#flaggedCol {
	color: Cyan !important;
}

#junkStatusCol {
	color: Cyan !important;
}

#correspondentCol {
	color: Cyan !important;
}

#subjectCol {
	color: Cyan !important;
}
#dateCol {
	color: Cyan !important;
} 
lenny2
Posts: 68
Joined: June 8th, 2022, 3:10 am

Re: Recolored thread header icons in userChrome

Post by lenny2 »

Post Reply