Jul 26, 2017 · 1 min read
Thanks for the resources!
Just a heads up — your theming.scss code needs to be updated to:
@import '~@angular/material/theming';
@include mat-core();
$primary: mat-palette($md-orange, 800);
$accent: mat-palette($md-light-blue, 600, A100, A400);
$warn: mat-palette($md-red, 600);
$theme: mat-light-theme($primary, $accent, $warn);
@include angular-material-theme($theme);in order to work with the latest Material2 version.