10 lines
289 B
SCSS
10 lines
289 B
SCSS
@import '../node_modules/@angular/material/theming';
|
|
@include mat-core();
|
|
$my-app-primary: mat-palette($mat-gray, 900);
|
|
$my-app-accent: mat-palette($mat-light-green, 700);
|
|
|
|
$my-app-theme: mat-light-theme($my-app-primary, $my-app-accent);
|
|
|
|
@include angular-material-theme($my-app-theme);
|
|
|