mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
15 lines
485 B
SCSS
15 lines
485 B
SCSS
@import '~@angular/material/theming';
|
|
|
|
@mixin angular-material() {
|
|
@include mat-core();
|
|
|
|
@include nb-for-theme(material-dark) {
|
|
$custom-dark-theme: mat-dark-theme(mat-palette($mat-pink), mat-palette($mat-blue-grey));
|
|
@include angular-material-theme($custom-dark-theme);
|
|
}
|
|
|
|
@include nb-for-theme(material-light) {
|
|
$custom-light-theme: mat-light-theme(mat-palette($mat-indigo), mat-palette($mat-pink));
|
|
@include angular-material-theme($custom-light-theme);
|
|
}
|
|
}
|