diff options
Diffstat (limited to 'nix/themes/catppuccin/latte.nix')
-rw-r--r-- | nix/themes/catppuccin/latte.nix | 53 |
1 files changed, 36 insertions, 17 deletions
diff --git a/nix/themes/catppuccin/latte.nix b/nix/themes/catppuccin/latte.nix index 476e123..ca0d3d6 100644 --- a/nix/themes/catppuccin/latte.nix +++ b/nix/themes/catppuccin/latte.nix @@ -1,21 +1,40 @@ -{ +rec { name = "Catppuccin Latte"; author = "https://github.com/catppuccin/catppuccin"; - base00 = "eff1f5"; # base - base01 = "e6e9ef"; # mantle - base02 = "ccd0da"; # surface0 - base03 = "bcc0cc"; # surface1 - base04 = "acb0be"; # surface2 - base05 = "4c4f69"; # text - base06 = "dc8a78"; # rosewater - base07 = "7287fd"; # lavender - base08 = "d20f39"; # red - base09 = "fe640b"; # peach - base0A = "df8e1d"; # yellow - base0B = "40a02b"; # green - base0C = "179299"; # teal - base0D = "1e66f5"; # blue - base0E = "8839ef"; # mauve - base0F = "dd7878"; # flamingo + 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"; + }; } |