I was able to get alternating comments colors with this code I found on the forum.
<?php if ( $comments ) : ?>
<?php $i = 0; //this creates alternate classes for comments ?>
<?php foreach ($comments as $comment) : ?>
<?php $i++; ?>
<div id="comment-<?php comment_ID() ?>"<?php if($i&1) { echo 'class="commentBox_even"';} else {echo 'class="commentBox_odd"';} ?>>
Works with no problem, however now I need to highlight admin comments as well, how should I proceed?
Thanks to everyone.