Files
nix-config/home/pc/common/programs/zathura.nix
T
2025-12-01 18:33:37 -05:00

38 lines
1.4 KiB
Nix

{config, ...}:
{
programs.zathura = {
enable = true;
options = with config.stylix.base16Scheme.palette; {
font = "${config.stylix.fonts.serif.name} 14";
default-fg = "#${base05}";
default-bg = "#${base00}";
completion-bg = "#${base02}";
completion-fg = "#${base05}";
completion-highlight-bg = "#${base04}";
completion-highlight-fg = "#${base05}";
completion-group-bg = "#${base02}";
completion-group-fg = "#${base0E}";
statusbar-fg = "#${base05}";
statusbar-bg = "#${base02}";
notification-bg = "#${base02}";
notification-fg = "#${base05}";
notification-error-bg = "#${base02}";
notification-error-fg = "#${base08}";
notification-warning-bg = "#${base02}";
notification-warning-fg = "#${base09}";
inputbar-fg = "#${base05}";
inputbar-bg = "#${base02}";
index-fg = "#${base05}";
index-bg = "#${base00}";
index-active-fg = "#${base05}";
index-active-bg = "#${base02}";
render-loading-bg = "#${base00}";
render-loading-fg = "#${base05}";
recolor-lightcolor = "#${base00}";
recolor-darkcolor = "#${base05}";
recolor = "true";
};
};
}