2022-09-23 11:49:22 +02:00
|
|
|
@use '@angular/material' as mat;
|
2022-06-23 18:44:50 +02:00
|
|
|
@import '../../../../node_modules/@angular/material/theming';
|
2022-09-23 11:04:18 +02:00
|
|
|
@include mat.core();
|
2022-06-23 18:44:50 +02:00
|
|
|
$primary-color: (
|
2022-07-17 22:27:27 +02:00
|
|
|
0: #211F7E,
|
|
|
|
contrast: (50: #ffffff)
|
2022-06-23 18:44:50 +02:00
|
|
|
);
|
|
|
|
$secondary-color: (
|
2022-07-17 22:27:27 +02:00
|
|
|
0: #3086ED,
|
|
|
|
contrast: (50: #ffffff)
|
2022-06-23 18:44:50 +02:00
|
|
|
);
|
2022-09-23 11:04:18 +02:00
|
|
|
$my-app-primary: mat.define-palette($primary-color, 0);
|
|
|
|
$my-app-accent: mat.define-palette($secondary-color, 0);
|
|
|
|
$my-app-theme: mat.define-light-theme($my-app-primary, $my-app-accent);
|
2022-06-23 18:44:50 +02:00
|
|
|
|
2022-09-23 11:04:18 +02:00
|
|
|
@include mat.all-component-themes($my-app-theme);
|
2022-06-23 18:44:50 +02:00
|
|
|
|
|
|
|
.cdk-global-overlay-wrapper, .cdk-overlay-container {
|
|
|
|
z-index: 9999!important;
|
|
|
|
}
|