diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-25 17:55:43 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-25 17:55:43 +1100 |
| commit | 420171ed93b4be4fd455b6a0a4c20b71b06b130f (patch) | |
| tree | fab221ceb09205b931d32eb0a3d6c4d2c257d098 | |
| parent | Merge remote-tracking branch 'refs/remotes/origin/round-gaps' into round-gaps (diff) | |
| download | caelestia-shell-420171ed93b4be4fd455b6a0a4c20b71b06b130f.tar.gz caelestia-shell-420171ed93b4be4fd455b6a0a4c20b71b06b130f.tar.bz2 caelestia-shell-420171ed93b4be4fd455b6a0a4c20b71b06b130f.zip | |
scheme: use success/error colours
| -rw-r--r-- | scss/bar.scss | 4 | ||||
| -rw-r--r-- | scss/notifpopups.scss | 4 | ||||
| -rw-r--r-- | scss/popdowns/notifications.scss | 4 | ||||
| -rw-r--r-- | 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; |