summaryrefslogtreecommitdiff
path: root/themes/rosepine/moon.nix
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-07-02 10:57:28 -0400
committerFreya Murphy <freya@freyacat.org>2025-07-02 10:57:28 -0400
commit2275414f403ae3b8f840f02087de6dd0847afb87 (patch)
tree2efcc9f54a40fc206c66b591510675962489ee51 /themes/rosepine/moon.nix
parentupdate zsh autocomplete/nvim comment color (diff)
downloaddotfiles-nix-2275414f403ae3b8f840f02087de6dd0847afb87.tar.gz
dotfiles-nix-2275414f403ae3b8f840f02087de6dd0847afb87.tar.bz2
dotfiles-nix-2275414f403ae3b8f840f02087de6dd0847afb87.zip
add rosepine themes
Diffstat (limited to '')
-rw-r--r--themes/rosepine/moon.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/themes/rosepine/moon.nix b/themes/rosepine/moon.nix
new file mode 100644
index 0000000..e89a441
--- /dev/null
+++ b/themes/rosepine/moon.nix
@@ -0,0 +1,42 @@
+rec {
+ name = "Rosé Pine Moon";
+ author = "https://https://rosepinetheme.com";
+
+ text = bright.white;
+ subtext = "908caa";
+
+ base = normal.black;
+ surface = bright.black;
+ overlay = "393552";
+
+ primary = normal.blue;
+ success = normal.green;
+ warning = normal.yellow;
+ error = normal.red;
+
+ normal = {
+ black = "232136";
+ red = "eb6f92";
+ green = "87d683";
+ yellow = "f6c177";
+ blue = "3e8fb0";
+ magenta = "c4a7e7";
+ cyan = "9ccfd8";
+ white = "e0def4";
+ pink = "ea9a97";
+ orange = normal.pink;
+ };
+
+ bright = {
+ black = "2a273f";
+ red = "eb6f92";
+ green = "87d683";
+ yellow = "f6c177";
+ blue = "3e8fb0";
+ magenta = "c4a7e7";
+ cyan = "9ccfd8";
+ white = "e0def4";
+ pink = "ea9a97";
+ orange = bright.pink;
+ };
+}