summaryrefslogtreecommitdiff
path: root/themes/catppuccin/latte.nix
diff options
context:
space:
mode:
Diffstat (limited to 'themes/catppuccin/latte.nix')
-rw-r--r--themes/catppuccin/latte.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/themes/catppuccin/latte.nix b/themes/catppuccin/latte.nix
new file mode 100644
index 0000000..ca0d3d6
--- /dev/null
+++ b/themes/catppuccin/latte.nix
@@ -0,0 +1,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";
+ };
+}