mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2024-11-14 18:43:57 +00:00
16 lines
334 B
SCSS
16 lines
334 B
SCSS
|
@import '~@angular/material/theming';
|
||
|
|
||
|
@include mat-core();
|
||
|
|
||
|
$themes_primary: mat-palette($mat-green);
|
||
|
$themes_accent: mat-palette($mat-pink, A200, A100, A400);
|
||
|
|
||
|
$themes_theme: mat-light-theme((
|
||
|
color: (
|
||
|
primary: $themes_primary,
|
||
|
accent: $themes_accent,
|
||
|
)
|
||
|
));
|
||
|
|
||
|
@include angular-material-theme($themes_theme);
|