summaryrefslogtreecommitdiff
path: root/themes/catppuccin/macchiato.nix
blob: f90a6dafc882cd044582419a14c5a5eb3034886b (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
rec {
  name = "Catppuccin Macchiato";
  author = "https://github.com/catppuccin/catppuccin";

  text = "cad3f5";
  subtext = "b8c0e0";

  base = "24273a";
  surface = "363a4f";
  overlay = "6e738d";

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

  normal = {
    black = "494d64";
    red = "ed8796";
    green = "a6da95";
    yellow = "eed49f";
    blue = "8aadf4";
    magenta = "f5bde6";
    cyan = "8bd5ca";
    white = "b8c0e0";
    orange = "f5a97f";
  };

  bright = {
    black = "5b6078";
    red = "ed8796";
    green = "a6da95";
    yellow = "eed49f";
    blue = "8aadf4";
    magenta = "f5bde6";
    cyan = "8bd5ca";
    white = "a5adcb";
    orange = "f5a97f";
  };
}