Put this here
Postbit > postbit_userstars
<span class="color-{$mybb->usergroup['title']}"><i class="fa fa-star-o"></i> </span></if></if>
In users/groups add this to the group.
<span class="color-Administrators"><strong>{username}</strong></span>
In CSS add this
.color-Administrators{
color: red;
text-shadow: 0px 0px 1px #800000;
}
To go further and have unique stars as admin..
<if $post['uid'] == 1 then><span class="color-{$mybb->post['usertitle']}"><i class="fa fa-star"></i> </span><else>
<span class="color-{$mybb->usergroup['title']}"><i class="fa fa-star-o"></i> </span></if></if>