diff options
Diffstat (limited to 'themes/catppuccin/mocha.nix')
-rw-r--r-- | themes/catppuccin/mocha.nix | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/themes/catppuccin/mocha.nix b/themes/catppuccin/mocha.nix new file mode 100644 index 0000000..84cb6ef --- /dev/null +++ b/themes/catppuccin/mocha.nix @@ -0,0 +1,40 @@ +rec { + name = "Catppuccin Mocha"; + author = "https://github.com/catppuccin/catppuccin"; + + fg = "cdd6f4"; + bg = "1e1e2e"; + + surface.fg = fg; + surface.bg = "313244"; + + hover.fg = fg; + hover.bg = "6c7086"; + + primary = normal.blue; + success = normal.green; + warning = normal.yellow; + error = normal.red; + + normal = { + black = "45475a"; + red = "f38ba8"; + green = "a6e3a1"; + yellow = "f9e2af"; + blue = "89b4fa"; + magenta = "ca9ee6"; + cyan = "94e2d5"; + white = "bac2de"; + }; + + bright = { + black = "585b70"; + red = "f38ba8"; + green = "a6e3a1"; + yellow = "f9e2af"; + blue = "89b4fa"; + magenta = "ca9ee6"; + cyan = "94e2d5"; + white = "a6adc8"; + }; +} |