Yeah, but you'd have to modify the code a bit.
One way to do it is on
postbit_display_complete, you could have something like...
PHP Code:
if (is_member_of($post,6)) {$post['message'] = '<div style="color:red;">'.$post['message'].'</div>';}
elseif (is_member_of($post,5)) {$post['message'] = '<div style="color:green;">'.$post['message'].'</div>';}
And so on.
(At least I think that would work. >.> Haven't tried it myself.)