Лучший способ импортировать материальную тему в ваше приложение, по моему мнению, это добавить в ваш (src / styles.scss, учитывая, что вы используете препроцессор SCSS):
// material theming
@import '../node_modules/@angular/material/theming';
@include mat-core();
@import 'my-theme';
// create the default theme
@include angular-material-theme($my-theme);
, затем добавьте свой собственныйтема (my-theme.scss):
$my-primary: mat-palette($mat-blue_gray, 800);
$my-accent: mat-palette($mat-green, 400);
$my-warn: mat-palette($mat-red);
$my-theme: mat-light-theme($my-primary, $my-accent, $my-warn);