You can add any color like below
<a mat-mini-fab color="success" routerLink=".">link</a>
it generates the class with that value like ‘mat-success’ then create css for that class
.mat-success {
background-color: green;
color: #fff;
}
You can add any color like below
<a mat-mini-fab color="success" routerLink=".">link</a>
it generates the class with that value like ‘mat-success’ then create css for that class
.mat-success {
background-color: green;
color: #fff;
}