Fix actions color

This commit is contained in:
eugene-sinitsyn 2020-03-10 17:48:17 +03:00 committed by Sergey Andrievskiy
parent 4b251afc2b
commit dd22c1bf5e
5 changed files with 27 additions and 24 deletions

View file

@ -0,0 +1,15 @@
@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);
}
}