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