summaryrefslogtreecommitdiff
path: root/themes/rosepine/moon.nix
blob: e89a441080eb24c6130de12de5357148cb18287d (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 = "Rosé Pine Moon";
  author = "https://https://rosepinetheme.com";

  text = bright.white;
  subtext = "908caa";

  base = normal.black;
  surface = bright.black;
  overlay = "393552";

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

  normal = {
    black = "232136";
    red = "eb6f92";
    green = "87d683";
    yellow = "f6c177";
    blue = "3e8fb0";
    magenta = "c4a7e7";
    cyan = "9ccfd8";
    white = "e0def4";
    pink = "ea9a97";
    orange = normal.pink;
  };

  bright = {
    black = "2a273f";
    red = "eb6f92";
    green = "87d683";
    yellow = "f6c177";
    blue = "3e8fb0";
    magenta = "c4a7e7";
    cyan = "9ccfd8";
    white = "e0def4";
    pink = "ea9a97";
    orange = bright.pink;
  };
}