summaryrefslogtreecommitdiff
path: root/colors.nix
blob: 889ec612900b37c94163864927b022cdf611463a (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
30
31
32
33
rec {
  everblush = {
    primary = {
      background = "#141b1e";
      foreground = "#dadada";
    };

    normal = {
      black = "#232a2d";
      red = "#e57474";
      green = "#8ccf7e";
      yellow = "#e5c76b";
      blue = "#67b0e8";
      magenta = "#c47fd5";
      cyan = "#6cbfbf";
      white = "#b3b9b8";
    };

    bright = {
      black = "#2d3437";
      red = "#ef7e7e";
      green = "#96d988";
      yellow = "#f4d67a";
      blue = "#71baf2";
      magenta = "#ce89df";
      cyan = "#67cbe7";
      white = "#bdc3c2";
    };
  };

  # easy to switch current theme from here
  current = everblush;
}