EMS/src/styles.scss

22 lines
420 B
SCSS
Raw Normal View History

2024-12-18 13:54:40 +01:00
@use '@angular/material' as mat;
html,
body {
2024-12-18 11:59:52 +01:00
height: 100%;
margin: 0;
2024-12-19 21:55:15 +01:00
2024-12-18 13:54:40 +01:00
background: var(--mat-sys-surface);
color: var(--mat-sys-on-surface);
2024-12-19 21:55:15 +01:00
--mat-sys-primary-overlay: color-mix(in srgb, var(--mat-sys-primary) 10%, transparent);
color-scheme: light dark;
font-family: var(--mat-sys-label-medium-font);
@include mat.theme((color: mat.$azure-palette,
typography: Roboto,
density: 0));
2024-12-18 11:59:52 +01:00
}