summaryrefslogtreecommitdiff
path: root/pkgs/astal/src/style/style.scss
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-17 21:35:43 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-17 21:35:43 -0400
commitf40273ec45e6676b975d42f4bc0c44a6392b7098 (patch)
treea896d01bed07fb1aa57d37b75d8fa2ad714e4ccf /pkgs/astal/src/style/style.scss
parentchange color scheme basis (diff)
downloaddotfiles-nix-f40273ec45e6676b975d42f4bc0c44a6392b7098.tar.gz
dotfiles-nix-f40273ec45e6676b975d42f4bc0c44a6392b7098.tar.bz2
dotfiles-nix-f40273ec45e6676b975d42f4bc0c44a6392b7098.zip
refactor styles to new color scheme basis
Diffstat (limited to 'pkgs/astal/src/style/style.scss')
-rw-r--r--pkgs/astal/src/style/style.scss13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/astal/src/style/style.scss b/pkgs/astal/src/style/style.scss
index 77c8b36..7be2b2f 100644
--- a/pkgs/astal/src/style/style.scss
+++ b/pkgs/astal/src/style/style.scss
@@ -8,22 +8,21 @@
}
window {
- color: $text;
+ color: $fg;
font-family: $font-name;
}
button {
- color: $text;
+ color: $fg;
background: $surface-bg;
&:hover {
- color: $hover;
background: $hover-bg;
}
&.primary {
- color: $primary;
- background: $primary-bg;
+ color: $bg;
+ background: $primary;
}
}
@@ -33,7 +32,7 @@ menu {
border-radius: $outer-radius;
menuitem {
- color: $text;
+ color: $fg;
margin: $inner-gap $outer-gap;
padding: $inner-gap;
border-radius: $inner-radius;
@@ -44,7 +43,7 @@ menu {
}
&:disabled {
- color: $subtext;
+ color: darken($fg, 5%);
}
}