summaryrefslogtreecommitdiff
path: root/themes/tricolors.nix
blob: 42c99c0b729c1d0a9e944f2cb0b0cee1418276d7 (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
34
35
36
37
38
39
40
41
42
43
rec {
  name = "tricolors";
  author = "https://trimill.xyz";

  text = normal.white;
  subtext = "ada2a8";

  base = normal.black;
  surface = "302f3e";
  overlay = bright.black;

  primary = bright.blue;
  secondary = bright.pink;
  success = bright.green;
  warning = bright.yellow;
  error = bright.red;

  normal = {
    black = "14171d";
    blue = "4d75ab";
    cyan = "5c9183";
    green = "769d61";
    magenta = "855f91";
    red = "ab4353";
    white = "d5d2cc";
    yellow = "dcac52";
    pink = normal.magenta;
    orange = "d1764f";
  };

  bright = {
    black = "514b5f";
    blue = "7ea1c0";
    cyan = "87c4b8";
    green = "9dc265";
    magenta = "ac84b6";
    red = "ce6363";
    white = "f6f4e9";
    yellow = "f0c96c";
    pink = bright.magenta;
    orange = "edad80";
  };
}