summaryrefslogtreecommitdiff
path: root/themes/catppuccin/latte.nix
blob: 0ac5185a8bd04667a28234f3701e66ed880a9c36 (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 Latte";
  author = "https://github.com/catppuccin/catppuccin";

  text = "4c4f69";
  subtext = "5c5f77";

  base = "eff1f5";
  surface = "ccd0da";
  overlay = "9ca0b0";

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

  normal = {
    black = "bcc0cc";
    red = "d20f39";
    green = "40a02b";
    yellow = "df8e1d";
    blue = "1e66f5";
    magenta = "ea76cb";
    cyan = "179299";
    white = "5c5f77";
    orange = "fe640b";
  };

  bright = {
    black = "acb0be";
    red = "d20f39";
    green = "40a02b";
    yellow = "df8e1d";
    blue = "1e66f5";
    magenta = "ea76cb";
    cyan = "179299";
    white = "6c6f85";
    orange = "fe640b";
  };
}