All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2s
17 lines
257 B
SCSS
17 lines
257 B
SCSS
@use '@angular/material' as mat;
|
|
|
|
:root {
|
|
color-scheme: light dark;
|
|
@include mat.theme(
|
|
(
|
|
color: (
|
|
primary: mat.$azure-palette,
|
|
tertiary: mat.$blue-palette,
|
|
theme-type: color-scheme,
|
|
),
|
|
typography: Roboto,
|
|
density: -3,
|
|
)
|
|
);
|
|
}
|