Snow white backgrounds in HTML pages hurt the eye. What HTML authors respectivly their HTML editor programs do is a sign of evil, of that computer misery we all love so much. PCs are anti-ergonomic, loud, insecure, illogical, messed up, disintegrated.
Most programs obey to the values specified by the Windows GUI. These values can be set under "display > appearance > ...". That means that you can set window background color to light grey (for instance) and immediatly see the result in most of your applications. Also browsers do, but when a HTML page explicity specifies a background color, this overrides Windows GUI values. Sure, most browsers can be told to ignore ALL colors, but then it gets plain ugly - I want to get rid of bright white planes only.
For Mozilla there is a solution: Generate a text document and write the lines
* [bgcolor="#FFFFFF"] { background: #ECECEC ! important; }
* [bgcolor="white"] { background: #ECECEC ! important; }
into it and save it as ...MozillaProfiles...chromeuserContent.css. That works for 95% of all white web pages, it exchanges the color value #FFFFFF (= 100% white) by #ECECEC (= 95% white).
Unfortunatly more and more HTML pages exchange the HTML command "bgcolor=#FFFFFF" (also known as the vomit white tag ) by CSS commands. CSS commands (as in userContent.css) cannot analyse and modify CSS commands (as in web pages) as specifically as they can access HTML commands, hence we must let all CSS-generated colors pass through. Me thinks that CSS is a sick format, even though you can acess it via Javascript. See w3c.org for the CSS2 standard if you don?t believe me! CSS1 was founded by M$, by the way. If you hate white even more than I do, use
* *[class] { background: #ECECEC ! important; }
* *[id] { background: #ECECEC ! important; }
* *[style] { background: #ECECEC ! important; }
Or at least:
* BODY[class] { background: #E8E8E8 ! important; }
* BODY[style] { background: #ECECEC ! important; }
But then you should also tie text colors to black, else you will get unreadable white-on-white text sometimes.
http://grassomusic.de/english/white.htmYours,
Grasso