aboutsummaryrefslogtreecommitdiff
path: root/gui/zathura.nix
blob: 3c4643f6c983b8fc214afbaa778a1e3a8183f9d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ pkgs, ... }:

{
  programs.zathura = {
    enable = true;

    options = {
      font = "Iosevka 14px";
      
      inputbar-bg   = "#161616";
      inputbar-fg   = "#909737";

      statusbar-bg  = "#161616";
      statusbar-fg  = "#909737";

      completion-bg = "#161616";
      completion-fg = "#909737";

      completion-highlight-bg = "#909737";
      completion-highlight-fg = "#161616";

      recolor-lightcolor      = "#161616";
      recolor-darkcolor       = "#ffffff";
    };
  };
}