nix-config/modules/niri/fuzzel.conf.nix
2024-07-02 03:01:43 +02:00

11 lines
487 B
Nix

{ lib, config, ... }: {
colors = with lib; with strings; {
background = concatStrings [ config.theme.base "ee" ];
text = concatStrings [ config.theme.text "ff" ];
match = concatStrings [ config.theme.gold "ff" ];
selection = concatStrings [ config.theme.highlight-med "ee" ];
selection-text = concatStrings [ config.theme.text "ff" ];
selection-match = concatStrings [ config.theme.gold "ff" ];
border = concatStrings [ config.theme.overlay "ff" ];
};
}