Sure it's possible! You'll need to touch PHP and CSS files, so you'll have to be comfortable with that. If so, read on.
Start by opening admin/includes/stylesheet.css and go to the bottom. Make a new entry for your desired color and styling, something like...
Code:
.colorComments{
color:#FF0000;
}
Save and close the file.
Now open admin/orders.php and find this somewhere around line #556
Code:
<td class="smallText" align="center"><strong><?php echo TABLE_HEADING_COMMENTS; ?></strong></td>
We need to edit the section highlighted in red. Change it to read as follows:
Code:
class="smallText colorComments"