graph/src/material.scss

15 lines
583 B
SCSS
Raw Normal View History

2022-12-15 11:49:11 +01:00
@use '@angular/material' as mat;
@import '@angular/material/theming';
2022-12-15 11:18:56 +01: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);
2022-12-15 11:18:56 +01:00
$my-app-theme: mat.define-light-theme($my-app-primary, $my-app-accent, $my-app-warn);
2022-12-15 11:18:56 +01: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;
}