I am using AngularJS and I use ng-repeat to loop and show the details in the page.
ng-repeat
Is there a possibility to change the font color based on the value?>
You can do it very easily by ng-class and css.
ng-class
CSS code
.Error{color: red;} .Warning{color: blue;} .Ignored{color: green;}
Html code
{{s.Name}} {{s.state}}