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/theme.nix | |
parent | add alacritty (diff) | |
download | dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.tar.gz dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.tar.bz2 dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.zip |
update colorschemes
Diffstat (limited to '')
-rw-r--r-- | pkgs/astal/theme.nix | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/astal/theme.nix b/pkgs/astal/theme.nix index 2802d6c..9774012 100644 --- a/pkgs/astal/theme.nix +++ b/pkgs/astal/theme.nix @@ -1,13 +1,11 @@ {options, ...}: '' - $fg: #${options.theme.colors.fg}; - $bg: #${options.theme.colors.bg}; + $text: #${options.theme.colors.text}; + $subtext: #${options.theme.colors.subtext}; - $surface-fg: #${options.theme.colors.surface.fg}; - $surface-bg: #${options.theme.colors.surface.bg}; - - $hover-fg: #${options.theme.colors.hover.fg}; - $hover-bg: #${options.theme.colors.hover.bg}; + $base: #${options.theme.colors.base}; + $surface: #${options.theme.colors.surface}; + $overlay: #${options.theme.colors.overlay}; $primary: #${options.theme.colors.primary}; $success: #${options.theme.colors.success}; |