summaryrefslogtreecommitdiff
path: root/themes/catppuccin/latte.nix
blob: 0378da85625a28b44ff12e069d11d9a7a659d70c (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";

  fg = "4c4f69";
  bg = "eff1f5";

  surface.fg = fg;
  surface.bg = "ccd0da";

  hover.fg = fg;
  hover.bg = "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";
  };

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