Suppose I want to utilize the mat-primary
color as a background for a div
using a CSS/SASS class, how should I reference it? My initial thought was:
@import '~@angular/material/prebuilt-themes/deeppurple-amber.css';
.my-class{
background-color: $mat-primary;
}
Unfortunately, this approach does not work as expected.