1
|
@import '~@angular/material/theming';
|
2
|
@include mat-core();
|
3
|
$my-app-primary: mat-palette($mat-blue-grey);
|
4
|
$my-app-accent: mat-palette($mat-green);
|
5
|
$my-app-warn: mat-palette($mat-deep-orange);
|
6
|
|
7
|
$my-app-theme: mat-light-theme($my-app-primary, $my-app-accent, $my-app-warn);
|
8
|
|
9
|
@include angular-material-theme($my-app-theme);
|
10
|
|
11
|
.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled), .mat-option.mat-active:not(.mat-option-disabled) {
|
12
|
background-color: #F8CBBB;
|
13
|
}
|