Jump to content
06/12/2006
Since you might use the same color for two different “constantsâ€, it’d be safer to append a comment to each value:
body {color : #ffffff /*mainTextColor*/; } ... p {color: #ffffff /*secondaryTextColor*/; }
Now when you want to alter just the “mainTextColor†you’ll be able to do so w/ find/replace.
Vote down?
06/12/2006
Since you might use the same color for two different “constantsâ€, it’d be safer to append a comment to each value:
body {color : #ffffff /*mainTextColor*/; }
...
p {color: #ffffff /*secondaryTextColor*/; }
Now when you want to alter just the “mainTextColor†you’ll be able to do so w/ find/replace.