From 7acd80466e7cdbed5eba165d821f0a2b1c7a9b7c Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 27 Jul 2023 09:24:08 +0000 Subject: [PATCH] CSS: Adjust the colour palette and add a secondary colour This moves our colour palette away from the standard Bulma colours as they clash a lot with our primary colours. Signed-off-by: Michael Tremer --- src/sass/main.sass | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/sass/main.sass b/src/sass/main.sass index 5401a508..f1a13f87 100644 --- a/src/sass/main.sass +++ b/src/sass/main.sass @@ -9,16 +9,17 @@ $family-sans-serif: Prompt, sans-serif // Colour Palette $primary: #ff2e52 $primary-invert: #ffffff -$success: #3adb76 +$secondary: #46ffc0 +$secondary-invert: #000000 +$success: #1ae210 $success-invert: #ffffff -$yellow: #e7e247 -$red: #cc4b47 -$black: #000000 +$danger: #ac001a +$warning: #f3ff50 // Custom Colours $lwl: #6534C8 -$custom-colors: ("lwl" : ($lwl, $white)) +$custom-colors: ("secondary" : ($secondary, $secondary-invert), "lwl" : ($lwl, $white)) // Use the primary colour for links $link: $primary -- 2.47.3