Is it possible to add custom (HEX) color to material component in Angular 4? For example something like this:
<div *ngFor="let factor of factors">
   <button md-button color="factor.color">Button</button>
</div>
Where factor.color is string in hex format (for example '#CCC')
 
     
    