From d6c443b1c3ec59d6f39ed41eed3edfeba741dd8b Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Wed, 4 Jun 2025 17:21:34 +0800 Subject: [PATCH] Added button color variables --- src/styles/variables.sass | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/styles/variables.sass b/src/styles/variables.sass index f45b866..b65d052 100644 --- a/src/styles/variables.sass +++ b/src/styles/variables.sass @@ -1,9 +1,16 @@ @use 'sass:color' $background: #0c1b31 -$text-color: color.adjust($background, $lightness: 90%) +$textColor: color.adjust($background, $lightness: 90%) -$font-size: 1rem +$fontSize: 1rem -$border-margin: 2rem -$border-margin: 2rem \ No newline at end of file +$borderMargin: 2rem + +$primaryColor: #0075BB +$secondaryColor: #57687F +$accentColor: #00887C +$infoColor: #0082A4 +$successColor: #009435 +$warningColor: #E5B400 +$errorColor: #E8595C