Chapter Text
This is some white text with a black background and Georgia font.
This text is light gray. Very light gray. There's really not that big of a difference. Hm.
This is some black text on a white background.
This text may be hard to reads as its gray against a white background. Highlight it, maybe. [This text may be hard to reads as its gray against a white background. Highlight it, maybe.]
Code, come get your code! vv
#workskin .black-background {
background-color: #000000;
color: #FFFFFF;
font-family: Georgia, serif;
padding: 20px;
}
#workskin .light-gray-text {
color: #D3D3D3;Example:
<div class="black-background">
<p>This text is black.</p> //(This text will appear like the first example)
<p><span class="light-gray-text">This text is light gray.</span></p> //(This text will appear like the second example)
</div>
