16 lines
334 B
SCSS
16 lines
334 B
SCSS
|
|
// Custom Theming for Angular Material
|
|
// For more information: https://material.angular.dev/guide/theming
|
|
@use '@angular/material' as mat;
|
|
|
|
html {
|
|
@include mat.theme((
|
|
color: (
|
|
theme-type: light,
|
|
primary: mat.$azure-palette,
|
|
tertiary: mat.$blue-palette,
|
|
),
|
|
typography: Roboto,
|
|
density: 0,
|
|
));
|
|
} |