aboutsummaryrefslogtreecommitdiff
path: root/modules/user/desktop/apps/foot.nix
blob: 6944563d4d119391d9d2e0fbe8c1d671fd05af1c (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ config, ... }:
{
  programs.foot.settings = {
    bell.urgent = true;
    cursor = {
      blink = true;
      unfocused-style = "hollow";
    };

    colors-dark = {
      background = "1e1e2e";
      cursor = "11111b f5e0dc";
      foreground = "cdd6f4";
      regular0 = "45475a";
      regular1 = "f38ba8";
      regular2 = "a6e3a1";
      regular3 = "f9e2af";
      regular4 = "89b4fa";
      regular5 = "f5c2e7";
      regular6 = "94e2d5";
      regular7 = "bac2de";
      bright0 = "585b70";
      bright1 = "f38ba8";
      bright2 = "a6e3a1";
      bright3 = "f9e2af";
      bright4 = "89b4fa";
      bright5 = "f5c2e7";
      bright6 = "94e2d5";
      bright7 = "a6adc8";
      "16" = "fab387";
      "17" = "f5e0dc";

      jump-labels = "11111b fab387";
      search-box-match = "cdd6f4 313244";
      search-box-no-match = "11111b f38ba8";
      selection-background = "414356";
      selection-foreground = "cdd6f4";
      urls = "89b4fa";
    };

    main = {
      font = "Fira Code:size=8";
      selection-target = "none";
    };

    mouse.hide-when-typing = true;
    scrollback.multiplier = 1.0;
  };
}