From d186569705688a06b589f01442d8093f0e990eb8 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 5 Jun 2025 13:49:41 +0800 Subject: [PATCH] Added variable $textColorTitle Adjusted $textColor --- src/assets/css/variables.sass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/assets/css/variables.sass b/src/assets/css/variables.sass index b3c062c..7b35ed6 100644 --- a/src/assets/css/variables.sass +++ b/src/assets/css/variables.sass @@ -2,7 +2,8 @@ $fontFamily: 'Inter', sans-serif $background: #0f1a28 -$textColor: color.adjust($background, $lightness: 85%) +$textColor: color.adjust($background, $lightness: 80%) +$textColorTitle: color.adjust($background, $lightness: 75%) $borderRadius: 16px $componentBorder: 2px solid color.adjust($background, $lightness: 6%) $componentBackground: color.adjust($background, $lightness: 1%)