diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-07 19:42:14 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-07 19:42:14 +1100 |
| commit | 630885daab9bae4ed8fd911fee1b51e4241f7bd7 (patch) | |
| tree | da6ddb3c83a98a27329371dada53a7d3a92f5f9a /scss | |
| parent | launcher: fixes (diff) | |
| download | caelestia-shell-630885daab9bae4ed8fd911fee1b51e4241f7bd7.tar.gz caelestia-shell-630885daab9bae4ed8fd911fee1b51e4241f7bd7.tar.bz2 caelestia-shell-630885daab9bae4ed8fd911fee1b51e4241f7bd7.zip | |
update for scheme refactor
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/notifpopups.scss | 2 | ||||
| -rw-r--r-- | scss/popdowns/notifications.scss | 4 | ||||
| -rw-r--r-- | scss/scheme/_default.scss | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/scss/notifpopups.scss b/scss/notifpopups.scss index 74c5118..c4760b7 100644 --- a/scss/notifpopups.scss +++ b/scss/notifpopups.scss @@ -33,7 +33,7 @@ } &.normal { - @include popup(scheme.$accent, 0.3); + @include popup(scheme.$primary, 0.3); } &.critical { diff --git a/scss/popdowns/notifications.scss b/scss/popdowns/notifications.scss index b328a7c..e992f50 100644 --- a/scss/popdowns/notifications.scss +++ b/scss/popdowns/notifications.scss @@ -32,8 +32,8 @@ } &.normal { - @include lib.border(scheme.$accent, 0.3); - @include popup(scheme.$accent); + @include lib.border(scheme.$primary, 0.3); + @include popup(scheme.$primary); } &.critical { diff --git a/scss/scheme/_default.scss b/scss/scheme/_default.scss index 2e1ea2c..71ea197 100644 --- a/scss/scheme/_default.scss +++ b/scss/scheme/_default.scss @@ -26,4 +26,6 @@ $mantle: #21242b; $crust: #1e2126; $success: #98c379; $error: #be5046; -$accent: #d19a66; +$primary: #d19a66; +$secondary: #61afef; +$tertiary: #98c379; |