From 4e64dd1add3bcb42a0b9fb126979ef3dc83d7ef7 Mon Sep 17 00:00:00 2001 From: reluc Date: Tue, 18 Jul 2023 20:15:22 +0200 Subject: [PATCH] feat(frontend): changed the primary color --- .../src/app/shared/components/loading/loading.component.css | 2 +- frontend/src/custom-theme.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/shared/components/loading/loading.component.css b/frontend/src/app/shared/components/loading/loading.component.css index c494387..c8acdf9 100644 --- a/frontend/src/app/shared/components/loading/loading.component.css +++ b/frontend/src/app/shared/components/loading/loading.component.css @@ -1,6 +1,6 @@ .spinner-container { position: fixed; - background: rgba(0, 0, 0, 0.32); + background: rgba(255, 255, 255, 0.705); height: 100%; width: 100%; display: flex; diff --git a/frontend/src/custom-theme.scss b/frontend/src/custom-theme.scss index f4c604d..12f03ff 100644 --- a/frontend/src/custom-theme.scss +++ b/frontend/src/custom-theme.scss @@ -11,8 +11,8 @@ // Define the palettes for your theme using the Material Design palettes available in palette.scss // (imported above). For each palette, you can optionally specify a default, lighter, and darker // hue. Available color palettes: https://material.io/design/color/ -$frontend-primary: mat.define-palette(mat.$indigo-palette); -$frontend-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400); +$frontend-primary: mat.define-palette(mat.$blue-palette); +$frontend-accent: mat.define-palette(mat.$teal-palette, A200, A100, A400); // The warn palette is optional (defaults to red). $frontend-warn: mat.define-palette(mat.$red-palette);