From ac26b26e2ec8f64eb9871707f14cbcba45488610 Mon Sep 17 00:00:00 2001 From: puriphatt Date: Thu, 18 Apr 2024 09:06:54 +0700 Subject: [PATCH] refactor: positive color --- src/css/app.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/css/app.scss b/src/css/app.scss index 126a7c4d..f6b08f3f 100644 --- a/src/css/app.scss +++ b/src/css/app.scss @@ -23,6 +23,9 @@ html { --negative-fg: 0 0% 100%; --negative-bg: var(--red-9-hsl); + --positive-fg: 0 0% 100%; + --positive-bg: var(--teal-7-hsl); + --gender-male: var(--blue-5-hsl); --gender-female: var(--pink-7-hsl); @@ -133,3 +136,12 @@ html { color: hsl(var(--negative-fg)); background-color: hsl(var(--negative-bg)); } + +.app-text-positive { + color: hsl(var(--positive-bg)) !important; +} + +.app-bg-positive { + color: hsl(var(--positive-fg)); + background-color: hsl(var(--positive-bg)); +}