I simply need to use standard (not custom) $primary, $accent, $want colors to style my angular components. All I find in the docs and articles is how to customize it. I do not need to customize, just use the standard colors.
For example, I simply need to set text color:
a {
display: block;
font-weight: bold;
line-height: 2.3em;
color: mat-color($accent);
}
How do I do this? All I tried throws different errors.