когда будете начинать новую тему, справа от заголовка будет выпадающее меню с цветами.
если выбрать любой цвет, то на странице списка тем ваша тема будет выделена цветом.
пример можно увидеть на этом форуме.
ставить в хтмл-низ, цвета можно добавить при желании.

<script type="text/javascript">
if(document.url.indexof("viewforum.php")!=-1){
var a = document.getelementsbytagname("a");
var ins, col;
for( i=0; i<a.length; i++ ){
if(a[i].href.indexof("viewtopic.php")!=-1 && a[i].innerhtml.indexof(";;")!=-1){
ins = a[i].innerhtml;
col = ins.substring(0, ins.indexof(";;"))
txt = ins.substring(ins.indexof(";;")+2)
a[i].innerhtml = "<span style=\"color: "+col+"\">"+txt+"</span>";
}
}
} else if(document.url.indexof("viewtopic.php")!=-1){
var p = document.getelementsbytagname("p");
if(document.title.indexof(";;")!=-1){
document.title = document.title.substring(0, document.title.indexof(" - ")+3)+document.title.substring(document.title.indexof(";;")+2)
}
for( q=0; q<p.length; q++ ){
if(p[q].classname=="container crumbs" && p[q].innerhtml.indexof(";;")!=-1){
p[q].innerhtml = p[q].innerhtml.substring(0, p[q].innerhtml.lastindexof("»")+1)+" "+p[q].innerhtml.substring(p[q].innerhtml.indexof(";;")+2)
}
}
} else if(document.url.indexof("post.php?fid=")!=-1 && groupid<=2){
var colors = new array();
colors.push(new array('красный', 'red'));
colors.push(new array('черный', 'black'));
colors.push(new array('желтый', 'yellow'));
colors.push(new array('оранжевый', 'orange'));
colors.push(new array('синий', 'blue'));
colors.push(new array('зеленый', 'green'));
colors.push(new array('серый', 'gray'));
var mmass = ""
for(x=0;x<colors.length;x++){
mmass+="<option style=\"color: "+colors[x][1]+"\" value=\""+colors[x][1]+"\">"+colors[x][0]+"</option>"
}
var p1 = document.getelementsbyname("req_subject")[0]
p1.style.visibility = 'hidden'
p1.parentnode.innerhtml+="<input onkeydown=\"st(document.getelementsbyname('changer')[0].options[document.getelementsbyname('changer')[0].selectedindex].value)\" onkeyup=\"st(document.getelementsbyname('changer')[0].options[document.getelementsbyname('changer')[0].selectedindex].value)\"   id=\"qwe_pole\" type=\"text\" name=\"qwe_pole\" value=\"\" size=\"80\" maxlength=\"70\" /> <select name=\"changer\" onchange=\"st(this.options[this.selectedindex].value)\"><option value=\"default\">по-умолчанию</option>"+mmass+"</select>"
function st(value){