You would do this with a template conditional in your postbit or postbit_legacy template. It doesn't specify if this is for vBulletin 3.x or 4.x but the code is a little different.
In VB 3.x you find $post[message] in the template...
Look for a <div> or <td> tag above it, find which one you want to use (some HTML knowledge is required here)
Inside the tag you'd add something like:
Code:
<if condition="is_member_of($bbuserinfo, 6)">style="background:gold;"</if><if condition="is_member_of($bbuserinfo, 5,7)">style="background:green;"</if>
6 is the usual admin group, 5 and 7 are usually mods and super-mods...