If you want to edit the colors, find this code in index.php
PHP Code:
if ($todayuser['usergroupid'] == 6 and $highlightadmin) {
$username = "<b><i><font color=red>$todayuser[username]</font></i></b>"; // Color for Admin
} else if (($todayuser['usergroupid'] == 5) and $highlightadmin) {
$username = "<b><font color=darkred>$todayuser[username]</font></b>"; // Color for Supermod
} else if (($mod["$userid"]) and $highlightadmin) {
$username = "<b><font color=green>$todayuser[username]</font></b>"; // Color for Mod
} else {
$username = "<font color=darkblue>$todayuser[username]</font>"; // Color for normal Member or "Highlight Admin" is turned of
}
you can easily change the colors in that bit of coding..