diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-27 11:12:06 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-27 11:12:06 -0400 |
commit | 80d32cb32a631e495d3a19d714a9acfd5aec9833 (patch) | |
tree | ebad46c5cb14559edda63d82702ffbd35e744d6f /pkgs/astal/src/style/style.scss | |
parent | add alacritty (diff) | |
download | dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.tar.gz dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.tar.bz2 dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.zip |
update colorschemes
Diffstat (limited to 'pkgs/astal/src/style/style.scss')
-rw-r--r-- | pkgs/astal/src/style/style.scss | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/astal/src/style/style.scss b/pkgs/astal/src/style/style.scss index ddef6c7..3812245 100644 --- a/pkgs/astal/src/style/style.scss +++ b/pkgs/astal/src/style/style.scss @@ -13,47 +13,47 @@ } window { - color: $fg; + color: $text; font-family: $font-name; } button { - color: $fg; - background: $surface-bg; + color: $text; + background: $surface; &:hover { - background: $hover-bg; + background: $overlay; } &.primary { - color: $bg; + color: $base; background: $primary; } } menu { - background: $bg; + background: $base; padding: $inner-gap 0; border-radius: $outer-radius; menuitem { - color: $fg; + color: $text; margin: $inner-gap $outer-gap; padding: $inner-gap; border-radius: $inner-radius; &:hover, &:selected { - background: $surface-bg; + background: $surface; } &:disabled { - color: darken($fg, 5%); + color: darken($text, 5%); } } separator { - background-color: $surface-bg; + background-color: $surface; min-height: 1px; margin: $inner-gap 0; } |