25 lines
645 B
SCSS
25 lines
645 B
SCSS
@use '@angular/material' as mat;
|
|
@use '@angular/material/theming';
|
|
@include mat.core();
|
|
$primary-color: (
|
|
0: #211F7E,
|
|
100: #211F7E,
|
|
700: #211F7E,
|
|
contrast: (50: #ffffff)
|
|
);
|
|
$secondary-color: (
|
|
0: #3086ED,
|
|
100: #3086ED,
|
|
700: #3086ED,
|
|
contrast: (50: #ffffff)
|
|
);
|
|
$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);
|
|
|
|
@include mat.all-component-themes($my-app-theme);
|
|
|
|
.cdk-global-overlay-wrapper, .cdk-overlay-container {
|
|
z-index: 9999!important;
|
|
}
|