Hi Katie,
You can do it in ItemDataBound event in the datagrid.
For eg:
if(put your condition here){
e.Item.Attributes.Add("style","color:blue;background-color:lightyellow");
}
This will change the font color and background color of the row(s).
HTH,
Regards,