I should have asked this in my previous question (CSS style declaration reusage), but I didn't think of it at the time. Since that question is answered, I'll start a new one.
I am trying to create color palette in CSS that will be used through out my application. For example:
.blue { color: #434544; }
.green { color: #G99933; }
I do not want to define colors anywhere else in my CSS. The problem I am running into is how do i use the .blue
style when, for example, I need a background-color
definition? Take a look at this:
.editor { background-color: #434544 }
I want to reference back to the .blue
style instead of defining it here again. How can I do that?
UPDATE I found the perfect solution for my question: Chirpy -> http://chirpy.codeplex.com/