Would it be feasible to incorporate a custom (HEX) color into a material component in Angular 4? For instance, like so:
<div *ngFor="let factor of factors">
<button md-button color="factor.color">Button</button>
</div>
In this scenario, factor.color is represented as a string in HEX format (e.g. '#CCC')