Is it possible to have two material design themes on the same app in parallel?
This is my use case: Majority of the application has mat-light-theme, but I would like to have header and side nav to have mat-dark-theme, including all the components that sit inside them.
I can do this by manually overriding classes of course, but I am hoping for some more elegant solution.
This is what I tried (without success):
@include angular-material-theme($app-light-theme);
.drawer {
// background: $primary-dark;
// color: $cl-text-fg-dark;
@include angular-material-theme($app-dark-theme);
}