usage-counts/src/material.scss

15 lines
599 B
SCSS
Raw Permalink Normal View History

2023-08-24 16:24:17 +02:00
@use '@angular/material' as mat;
@import '../node_modules/@angular/material/theming';
2023-08-24 16:20:49 +02:00
@include mat.core();
$my-app-primary: mat.define-palette(mat.$blue-grey-palette);
$my-app-accent: mat.define-palette(mat.$green-palette);
$my-app-warn: mat.define-palette(mat.$deep-orange-palette);
2023-08-24 16:20:49 +02:00
$my-app-theme: mat.define-light-theme($my-app-primary, $my-app-accent, $my-app-warn);
2023-08-24 16:20:49 +02:00
@include mat.all-component-themes($my-app-theme);
.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled), .mat-option.mat-active:not(.mat-option-disabled) {
background-color: #F8CBBB;
}