Different post colors for usergroups

Is there a way to set default post color based on a specific usergroup? For example, if I wanted all admins to default post in red.

Edit: Also a way to create an avatar/portrait library and assign them by usergroup.
 
what do you mean 'post in red'? the text?
there is a css class available to do this, although it would apply to all staff, including moderators.
in extra.css:

.staff
{
css here
}

for admin only you could use a conditional:
{$user.is_admin}
 
Top Bottom