summaryrefslogtreecommitdiff
path: root/themes/tricolors.nix
blob: 4f8f5517344a9566e36d27c0a4c47b3e62d467ab (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
rec {
  name = "tricolors";
  author = "https://trimill.xyz";

  text = bright.white;
  subtext = normal.white;

  base = normal.black;
  surface = "2c2b3b";
  overlay = bright.black;

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

  normal = {
    black = "14171d";
    blue = "3d67a2";
    cyan = "578c7c";
    green = "759438";
    magenta = "7b5687";
    red = "a63a3a";
    white = "ada0a8";
    yellow = "de7e54";
    pink = normal.magenta;
    orange = normal.yellow;
  };

  bright = {
    black = "4d4754";
    blue = "789ebf";
    cyan = "82bfb3";
    green = "97bd5e";
    magenta = "a97fb3";
    red = "cc5c5c";
    white = "c7c6c3";
    yellow = "f0c767";
    pink = bright.magenta;
    orange = bright.yellow;
  };
}