home/programs/fuzzel: theme with base16

This commit is contained in:
Anthony Rodriguez 2024-10-06 12:12:26 +02:00
parent 05e4923703
commit c0c6a9b352
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -1,4 +1,6 @@
{
inputs,
nixosConfig,
lib,
pkgs,
...
@ -8,7 +10,22 @@
settings = {
main = {
terminal = lib.getExe pkgs.foot;
use-bold = true;
dpi-aware = "auto";
font = "monospace:size=14";
};
colors = let
inherit (inputs.basix.schemeData.base16.${nixosConfig.theme.scheme}) palette;
in {
background = "${palette.base00}ff";
text = "${palette.base05}ff";
input = "${palette.base05}ff";
selection = "${palette.base02}ff";
selection-text = "${palette.base07}ff";
selection-match = "${palette.base0D}ff";
border = "${palette.base0E}ff";
};
border.width = 5;
};
};
}