This is an archive of an inactive wiki and cannot be modified.

DesignForMonochromeDisplays

Bad:

<span style="text-color: red">Important</span>

Good:

<b>Important</b>

Bad:

<!-- light red on dark green -->
<p style="background-color: #003300"><span style="color: #FFCCCC">Text</span></p>

Good:

<!-- dark red on light green instead -->
<p style="background-color: #CCFFCC"><span style="color: #330000">Text</span></p>

Bad:

<!-- medium red on medium green -->
<p style="background-color: green"><span style="color: red">Text</span></p>

Good:

<!-- dark red on light green instead -->
<p style="background-color: #CCFFCC"><span style="color: #330000">Text</span></p>

Back to BestPracticesList


CategoryPhp CategoryXhtml CategoryBpUseOfColor CategoryBpColorContrast

Contributions to this wiki are governed by the W3C policies for Contribution to W3C' wiki on Mobile Web.