Okay, so this might take some explaining:
I've been writing this story/game for a while, and thanks to some excellent people (greyelf in particular), I was able to alter the CSS to color fonts of certain characters' speech. Now, years later, I'm trying to figure out if there's a way to alter the coding so that over time, a character's font would shift from one color to another by a variable change.
What I'm working with right now is something like this in the style sheet:
#passages .phaera {color: #FF69B4;}
#passages .raphael {color: #51B9DF;}
Now, what I'm currently doing to achieve the effect I'm going for in regular passages is this:
<<if $Status is 7>>@@.phaera;"TEXT"<<else>>@@.raphael;"TEXT"<<endif>>
You can see how that would get tiresome really quick.
Is there anyway of achieving the above by altering the css from without or within the style sheet?