I implemented a form using angualr material, I can’t find standard ways to change the standard color coding in the material.
form
<div class="col-xs-12 testFormLabel">
<md-input-container class="testLabel">
<label>Reason</label>
<input name="reasonBox" id="reasonBox" ng-model="obj. reasonBox" ng-required="true">
</md-input-container>
</div>
CSS
.md-input-has-value. testLabel > input {
color:#008cba;
}
Problem
How can I change the name of the AF focus mark and underline for a different color (say, from blue to green)

Mad d source
share