@import "./theming"; @include mat-core(); $my-app-primary:mat-palette($mat-blue, 500); $my-app-accent :mat-palette($mat-pink, A200, A100, A400); $my-app-warn :mat-palette($mat-red); $my-app-theme :mat-light-theme($my-app-primary, $my-app-accent, $my-app-warn); @include angular-material-theme($my-app-theme); $my-dark-primary:mat-palette($mat-red, A700); $my-dark-accent :mat-palette($mat-amber, A200, A100, A400); $my-dark-warn :mat-palette($mat-deep-orange); $my-dark-theme :mat-dark-theme($my-dark-primary, $my-dark-accent, $my-dark-warn); .myapp-dark-theme { @include angular-material-theme($my-dark-theme); } .ant-rate-star:not(:last-child) { margin-right: 0; } .ant-rate { box-sizing: border-box; padding-top: 10px; }