style: apply b16 colorscheme to fuzzel configuration

This commit is contained in:
2025-05-25 11:01:12 +02:00
parent b8fad8d4b4
commit cd7df6f38b

View File

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