Ahhh,
It will by default take on the default text colour of the page. But you can over-ride that and make it just for the posts - you should be able to change that in the .thread0 and .thread1 in the CSS. It should be something like this already:
Code: |
.thread1 {background:#ffffff;}
.thread0 {background:#ffffff;}
|
Just inserting color: s in there should do it:
Code: |
.thread1 {background:#ffffff; color:#bbaaff;}
.thread0 {background:#ffffff; color:#bbaaff;}
|
Changing the colours to what you like.

Can't currently do that through Easy Customization, although that's definatly something to consider.

Ahhh, ok, it shows the subject in 2 places - in the threadlist, and actually in the thread. For the threadlist one, you can change the CSS:
Code: |
.threadlistlink {color:#ff3366; font-size:12px;}
|
For the one inside the thread (which shows in bold before every post), you'd have to change the default bold, like:
Code: |
.bold{font-weight:bold; color:#ffffff;}
|
But that'd change the colour for all bold things that use the .bold class..