diff options
Diffstat (limited to 'pkgs/astal/theme.nix')
-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}; |