From fb6781e17f5561f9406247fba069607cbcb48d81 Mon Sep 17 00:00:00 2001 From: Derek Chen Date: Fri, 2 Feb 2024 20:44:52 -0600 Subject: [PATCH] Colors modules switch --- .../common/CalendarGrid/CalendarGrid.module.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/views/components/common/CalendarGrid/CalendarGrid.module.scss b/src/views/components/common/CalendarGrid/CalendarGrid.module.scss index cafbf52f..e12c152e 100644 --- a/src/views/components/common/CalendarGrid/CalendarGrid.module.scss +++ b/src/views/components/common/CalendarGrid/CalendarGrid.module.scss @@ -1,6 +1,5 @@ -:root { - --Primary-Colors-Burnt-Orange: #BF5700; -} +@use 'sass:color'; +@use 'src/views/styles/colors.module.scss'; .dayLabelContainer { display: flex; @@ -15,7 +14,7 @@ } .dayLabel { - color: var(--Primary-Colors-Burnt-Orange); + color: colors.$burnt_orange; text-align: center; font-family: Roboto; font-size: 14.22px;