I am constucting a site using CSS that needs to be skinnable / brandable. In technical terms, for each "brand" I have a set of five color values in a database.
What I want to do is construct CSS files so that the color scheme of the entire site is unified and the colors are reused, so I can change the value in one place and it changes the entire site. The concept would look like this:
.SiteBaseColor {color:sienna;}
p {font-size: 50; color:SiteBaseColor;}
Is there a way to accomplish something like this?