aboutsummaryrefslogtreecommitdiff
path: root/gui/zathura.nix
blob: dccac31075aa6cf4ca7d9b690cef17627f419d17 (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
{ config, pkgs, ... }:

{
  programs.zathura = {
    enable = true;

    options = {
      font = "Iosevka 16px";

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

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

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

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

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