Creating SASS Varariables Referencing Angular Material Palettes | Task

Ole Ersoy
Oct - 04  -  1 min

Scenario

We want to create a palette variable for one of the color palettes we found in.

node_modules@angular\material\core\_palette.scss

Approach

The palettes can be referenced directly from @angular/material.

@use '@angular/material' as mat;
$my-palette: mat.$indigo-palette;