From 8d2474768be75f3a1f124841bfe8f424dc3d699e Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Tue, 20 Feb 2024 18:32:25 -0500 Subject: [PATCH] [S] More color variables --- AquaNet/src/app.sass | 16 +++++++++++++++- AquaNet/src/vars.sass | 13 +++++-------- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/AquaNet/src/app.sass b/AquaNet/src/app.sass index 8e4d62cd..71ddc876 100644 --- a/AquaNet/src/app.sass +++ b/AquaNet/src/app.sass @@ -47,7 +47,6 @@ h1 main:not(.no-margin) max-width: 1280px - //width: 100% margin: 0 auto padding-bottom: 100px @@ -73,3 +72,18 @@ button:hover button:focus, button:focus-visible color: $c-main outline: none + +.level-0 + --lv-color: $c-lv0 + +.level-1 + --lv-color: $c-lv1 + +.level-2 + --lv-color: $c-lv2 + +.level-3 + --lv-color: $c-lv3 + +.error + color: $c-error diff --git a/AquaNet/src/vars.sass b/AquaNet/src/vars.sass index e4564e44..f3aec7b0 100644 --- a/AquaNet/src/vars.sass +++ b/AquaNet/src/vars.sass @@ -3,16 +3,13 @@ $c-main: #b3c6ff $c-good: #b3ffb9 $c-darker: #646cff $c-bg: #242424 +$c-error: #ff6b6b $nav-height: 4rem $w-mobile: 560px $w-max: 900px -.level-0 - --lv-color: #6ED43E -.level-1 - --lv-color: #F7B807 -.level-2 - --lv-color: #FF828D -.level-3 - --lv-color: #A051DC \ No newline at end of file +$c-lv0: #6ED43E +$c-lv1: #F7B807 +$c-lv2: #FF828D +$c-lv3: #A051DC \ No newline at end of file