$custom-theme: mat-light-theme(( font-family: 'Roboto, sans-serif', // 其他主题选项 ));
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700');
body { font-family: 'Open Sans', sans-serif !important; }
@import '~@angular/material/theming'; @include mat-core();
$custom-theme: mat-light-theme(( font-family: 'Roboto, sans-serif', // 其他主题选项 ));
@include angular-material-theme($custom-theme);
通过以上方法可以解决Angular自定义主题无法更改字体的问题。