1@import '~@angular/material/theming'; 2@import 'apply-theme'; 3@import 'blue-theme'; 4 5@include mat-core(); 6 7$main-theme: $blue-theme; 8 9$primary: mat-palette($main-theme, 600, 100, 900); 10$accent: mat-palette($main-theme, A200, A100, A400); 11$app-theme: mat-light-theme($primary, $accent); 12 13@include angular-material-theme($app-theme); 14@include apply-theme($app-theme); 15