refactor: positive color

This commit is contained in:
puriphatt 2024-04-18 09:06:54 +07:00
parent 89110f54c7
commit ac26b26e2e

View file

@ -23,6 +23,9 @@ html {
--negative-fg: 0 0% 100%; --negative-fg: 0 0% 100%;
--negative-bg: var(--red-9-hsl); --negative-bg: var(--red-9-hsl);
--positive-fg: 0 0% 100%;
--positive-bg: var(--teal-7-hsl);
--gender-male: var(--blue-5-hsl); --gender-male: var(--blue-5-hsl);
--gender-female: var(--pink-7-hsl); --gender-female: var(--pink-7-hsl);
@ -133,3 +136,12 @@ html {
color: hsl(var(--negative-fg)); color: hsl(var(--negative-fg));
background-color: hsl(var(--negative-bg)); 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));
}