33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ pkgs, rice, ... }:
|
|
{
|
|
programs.zathura = {
|
|
enable = true;
|
|
options = with rice.color; {
|
|
completion-bg = background;
|
|
completion-fg = foreground;
|
|
completion-highlight-bg = background;
|
|
completion-highlight-fg = accent.base;
|
|
# default-bg = background;
|
|
# default-fg = foreground;
|
|
highlight-active-color = accent.base;
|
|
highlight-color = secondary.base;
|
|
index-active-bg = background;
|
|
inputbar-bg = background;
|
|
inputbar-fg = foreground;
|
|
notification-bg = background;
|
|
notification-error-bg = background;
|
|
notification-error-fg = foreground;
|
|
notification-fg = foreground;
|
|
notification-warning-bg = background;
|
|
notification-warning-fg = foreground;
|
|
recolor = false;
|
|
recolor-darkcolor = foreground;
|
|
recolor-keephue = true;
|
|
recolor-lightcolor = background;
|
|
selection-clipboard = "clipboard";
|
|
statusbar-bg = background;
|
|
statusbar-fg = foreground;
|
|
};
|
|
};
|
|
}
|