summaryrefslogtreecommitdiff
path: root/pkgs/astal/theme.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/astal/theme.nix')
-rw-r--r--pkgs/astal/theme.nix41
1 files changed, 18 insertions, 23 deletions
diff --git a/pkgs/astal/theme.nix b/pkgs/astal/theme.nix
index 1efd1fe..2802d6c 100644
--- a/pkgs/astal/theme.nix
+++ b/pkgs/astal/theme.nix
@@ -1,33 +1,28 @@
-{
- options,
- ...
-}:
+{options, ...}: ''
-''
-
-$fg: #${options.theme.colors.fg};
-$bg: #${options.theme.colors.bg};
+ $fg: #${options.theme.colors.fg};
+ $bg: #${options.theme.colors.bg};
-$surface-fg: #${options.theme.colors.surface.fg};
-$surface-bg: #${options.theme.colors.surface.bg};
+ $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};
+ $hover-fg: #${options.theme.colors.hover.fg};
+ $hover-bg: #${options.theme.colors.hover.bg};
-$primary: #${options.theme.colors.primary};
-$success: #${options.theme.colors.success};
-$warning: #${options.theme.colors.warning};
-$error: #${options.theme.colors.error};
+ $primary: #${options.theme.colors.primary};
+ $success: #${options.theme.colors.success};
+ $warning: #${options.theme.colors.warning};
+ $error: #${options.theme.colors.error};
-$border: ${toString options.theme.borderWidth}px;
+ $border: ${toString options.theme.borderWidth}px;
-$inner-radius: ${toString options.theme.innerRadius}px;
-$outer-radius: ${toString options.theme.outerRadius}px;
+ $inner-radius: ${toString options.theme.innerRadius}px;
+ $outer-radius: ${toString options.theme.outerRadius}px;
-$inner-gap: ${toString options.theme.innerGap}px;
-$outer-gap: ${toString options.theme.outerGap}px;
+ $inner-gap: ${toString options.theme.innerGap}px;
+ $outer-gap: ${toString options.theme.outerGap}px;
-$font-name: "${options.theme.font.regular}", "${options.theme.font.monospace}";
-$font-size: ${toString options.theme.font.size}px;
+ $font-name: "${options.theme.font.regular}", "${options.theme.font.monospace}";
+ $font-size: ${toString options.theme.font.size}px;
''