stylix/modules/zathura/hm.nix
NAHO 4c1acb8164
Zathura: remove default recolor configurations (#174)
Redeclaring the default recolor configurations does not alter the theme,
but requires using 'lib.mkForce' to modify the default configurations.
2023-10-19 12:49:07 +00:00

34 lines
1.1 KiB
Nix

{ config, lib, ... }:
with config.lib.stylix.colors;
{
options.stylix.targets.zathura.enable =
config.lib.stylix.mkEnableTarget "Zathura" true;
config = lib.mkIf config.stylix.targets.zathura.enable {
# Taken from here:
# https://github.com/doenerkebap/base16-zathura
programs.zathura.options = {
default-bg = "#${base00}";
default-fg = "#${base01}";
statusbar-fg = "#${base04}";
statusbar-bg = "#${base02}";
inputbar-bg = "#${base00}";
inputbar-fg = "#${base07}";
notification-bg = "#${base00}";
notification-fg = "#${base07}";
notification-error-bg = "#${base00}";
notification-error-fg = "#${base08}";
notification-warning-bg = "#${base00}";
notification-warning-fg = "#${base08}";
highlight-color = "#${base0A}";
highlight-active-color = "#${base0D}";
completion-bg = "#${base01}";
completion-fg = "#${base0D}";
completion-highlight-fg = "#${base07}";
completion-highlight-bg = "#${base0D}";
recolor-lightcolor = "#${base00}";
recolor-darkcolor = "#${base06}";
};
};
}