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

let
  hidpi = config.custom.hidpi;

in {
  programs.zathura = {
    enable = true;

    options = {
      font = if hidpi then "Iosevka 28px" else "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";
    };
  };
}