Add hue 100, 700 definitions to avoid error in material.scss

This commit is contained in:
Konstantinos Triantafyllou 2022-09-23 14:11:32 +03:00
parent b3b48a9fe7
commit 85ad768a46
1 changed files with 5 additions and 1 deletions

View File

@ -1,12 +1,16 @@
@use '@angular/material' as mat;
@import '../../../../node_modules/@angular/material/theming';
@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);