Ok I figured it out partially.
In global.php put
Code:
// do color
$bbcode=eregi_replace("\\[color=([^\"]*)\\]([^\\[]*)\\[\\/color\\]","<font color=\"\\1\">\\2</font>",$bbcode);
but it will only allow the color tag to be used once. If you put in a color tag followed by another color tag it will use the last one in the list and not the one above it and it screws the colors up.
You can use a traditional font tag before the color tag and they both work but if you use say two font tags and then a color tag and then another font tag and then a color tag the font tags show up ok but the color tag just shows you the last one.
Parker