summaryrefslogtreecommitdiff
path: root/themes/rosepine/main.nix
blob: 489b5dc7e1fe88054039ae8b24886364cc3843c4 (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";
  author = "https://https://rosepinetheme.com";

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

  base = normal.black;
  surface = bright.black;
  overlay = "26233a";

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

  normal = {
    black = "191724";
    red = "eb6f92";
    green = "87d683";
    yellow = "f6c177";
    blue = "31748f";
    magenta = "c4a7e7";
    cyan = "9ccfd8";
    white = "e0def4";
    pink = "ebbcba";
    orange = normal.pink;
  };

  bright = {
    black = "1f1d2e";
    red = "eb6f92";
    green = "87d683";
    yellow = "f6c177";
    blue = "31748f";
    magenta = "c4a7e7";
    cyan = "9ccfd8";
    white = "e0def4";
    pink = "ebbcba";
    orange = bright.pink;
  };
}