Forum Moderators: not2easy
I have a site that I essentially only want to use 6 colors on. I want to set those colors at the head of my stylesheet, and then use those definitions throughout my stylesheet. Here's a pseudocode version of what I'm talking about:
<style>
color1 = red
color2 = orange
color3 = yellow
color4 = green
color5 = blue
H1 {color: color1;}
H2 {color: color2;}
BODY {color: color2;}
TD {color: color3;}
</style>
Since the same color will be used throughout the stylesheet, I'd much rather be able to change the color values at the top rather than having to change them throughout the document. Makes it easier to maintain uniformity.