Ahh...Maybe it hasn't been done yet. Hmm...
Try this:
In Threadbit template --> threadbit look for:
Code:
<td class="alt2" id="td_title_$thread[realthreadid]" title="$thread[preview]">
Replace it with:
Code:
<!-- COLOR BACKGROUND CHANGE ON READ -->
<if condition="$show['gotonewpost']">
<td class="alt2" id="td_title_$thread[realthreadid]" title="$thread[preview]">
<else />
<td class="alt2" id="td_title_$thread[realthreadid]" title="$thread[preview]" style="background:#ff0000">
</if>
<!-- / COLOR BACKGROUND CHANGE ON READ -->
Change "#ff0000" to whatever color you want. The column for read threads (non-bold) will change color while the unread thread columns will remain the same.