29 lines
630 B
SCSS
29 lines
630 B
SCSS
// Custom Theming for Angular Material
|
|
// For more information: https://material.angular.io/guide/theming
|
|
@use "@angular/material" as mat;
|
|
@use "./app/styles/theme-colors" as rc-theme;
|
|
|
|
html {
|
|
@include mat.theme(
|
|
(
|
|
color: (
|
|
theme-type: light,
|
|
primary: rc-theme.$primary-palette,
|
|
tertiary: rc-theme.$tertiary-palette,
|
|
),
|
|
typography: Inter,
|
|
density: 0,
|
|
)
|
|
);
|
|
} /* You can add global styles to this file, and also import other style files */
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
font-family: Inter, sans-serif;
|
|
background-color: var(--mat-sys-surface);
|
|
}
|