23 lines
693 B
Nix
23 lines
693 B
Nix
{ pkgs, ... }:
|
|
let
|
|
strPalette = pkgs.lib.nix-rice.palette.toRgbHex pkgs.rice.colorPalette;
|
|
in
|
|
{
|
|
programs.zathura = {
|
|
enable = true;
|
|
mappings = { "<C-i>" = "recolor"; };
|
|
options = {
|
|
completion-bg = strPalette.bright.black;
|
|
# default-bg = strPalette.normal.black;
|
|
font = "${pkgs.rice.font.normal.name} 10";
|
|
inputbar-bg = strPalette.bright.black;
|
|
inputbar-fg = strPalette.normal.cyan;
|
|
page-padding = 10;
|
|
# recolor = true;
|
|
recolor-lightcolor = strPalette.primary.background;
|
|
recolor-darkcolor = strPalette.primary.foreground;
|
|
statusbar-bg = strPalette.bright.black;
|
|
selection-clipboard = "clipboard";
|
|
};
|
|
};
|
|
}
|