summaryrefslogtreecommitdiff
path: root/themes/catppuccin/mocha.nix
blob: 2abcebbdd8618ad5bdabe2c456af3d25116a458f (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 = "Catppuccin Mocha";
  author = "https://github.com/catppuccin/catppuccin";

  text = "cdd6f4";
  subtext = "bac2de";

  base = "1e1e2e";
  surface = "313244";
  overlay = "6c7086";

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

  normal = {
    black = "45475a";
    red = "f38ba8";
    green = "a6e3a1";
    yellow = "f9e2af";
    blue = "89b4fa";
    magenta = "ca9ee6";
    cyan = "94e2d5";
    white = "bac2de";
    pink = "f5c2e7";
    orange = "fab387";
  };

  bright = {
    black = "585b70";
    red = "f38ba8";
    green = "a6e3a1";
    yellow = "f9e2af";
    blue = "89b4fa";
    magenta = "ca9ee6";
    cyan = "94e2d5";
    white = "a6adc8";
    pink = "f5c2e7";
    orange = "fab387";
  };
}