Hey There,
This is a quick & dirty fix.
Add this plugin to your postbit_display_start hook:
PHP Code:
if($this->post->usergroupid == 6) {
$this->post['is_admin'] = true;
}
Find the div in your postbit template with the postrow class, and edit it.
Before:
HTML Code:
<div class="postrow">
After:
HTML Code:
<div class="postrow" <vb:if condition="$post['is_admin']">style="background-color: #ddd"</vb:if>>
Change the #ddd to whatever color you want.
No guarantees, but that should work

.
-Nick, SEOvB Developer