From 420171ed93b4be4fd455b6a0a4c20b71b06b130f Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 25 Feb 2025 17:55:43 +1100 Subject: scheme: use success/error colours --- scss/bar.scss | 4 ++-- scss/notifpopups.scss | 4 ++-- scss/popdowns/notifications.scss | 4 ++-- scss/scheme/_default.scss | 3 +++ 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/scss/bar.scss b/scss/bar.scss index 698a9df..8d1d67f 100644 --- a/scss/bar.scss +++ b/scss/bar.scss @@ -75,11 +75,11 @@ color: scheme.$teal; &.charging { - color: scheme.$green; + color: scheme.$success; } &.low { - color: scheme.$red; + color: scheme.$error; } } diff --git a/scss/notifpopups.scss b/scss/notifpopups.scss index f9b0df4..74c5118 100644 --- a/scss/notifpopups.scss +++ b/scss/notifpopups.scss @@ -37,8 +37,8 @@ } &.critical { - @include lib.border(scheme.$red, 0.5); - @include popup(scheme.$red, 0.8); + @include lib.border(scheme.$error, 0.5); + @include popup(scheme.$error, 0.8); } } } diff --git a/scss/popdowns/notifications.scss b/scss/popdowns/notifications.scss index b8802d2..b328a7c 100644 --- a/scss/popdowns/notifications.scss +++ b/scss/popdowns/notifications.scss @@ -37,8 +37,8 @@ } &.critical { - @include lib.border(scheme.$red, 0.8); - @include popup(scheme.$red); + @include lib.border(scheme.$error, 0.8); + @include popup(scheme.$error); } } diff --git a/scss/scheme/_default.scss b/scss/scheme/_default.scss index a94fff7..2e1ea2c 100644 --- a/scss/scheme/_default.scss +++ b/scss/scheme/_default.scss @@ -24,3 +24,6 @@ $surface0: #30343e; $base: #282c34; $mantle: #21242b; $crust: #1e2126; +$success: #98c379; +$error: #be5046; +$accent: #d19a66; -- cgit v1.2.3-freya