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"; }; }; };