From cd7df6f38b5ee1810c3a8c2f1b8fa1f5d80d0e25 Mon Sep 17 00:00:00 2001 From: "Adrian Gunnar Lauterer (aider)" Date: Sun, 25 May 2025 11:01:12 +0200 Subject: [PATCH] style: apply b16 colorscheme to fuzzel configuration --- home/gunalx/fuzzel.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/home/gunalx/fuzzel.nix b/home/gunalx/fuzzel.nix index 4b96d8e..0baed3d 100644 --- a/home/gunalx/fuzzel.nix +++ b/home/gunalx/fuzzel.nix @@ -1,4 +1,9 @@ -{ pkgs, config, lib, ... }: +{ config, pkgs, lib, inputs, ... }: + +let + palette = config.colorScheme.palette; + hex = colour: lib.removePrefix "#" colour; +in { programs.fuzzel = { @@ -10,7 +15,9 @@ layer = "overlay"; }; colors = { - background = "ffffffff"; + background = "${hex palette.base00}ff"; + foreground = "${hex palette.base05}ff"; + highlight = "${hex palette.base0D}ff"; }; }; };