diff options
Diffstat (limited to '')
-rw-r--r-- | themes/rosepine/main.nix | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/themes/rosepine/main.nix b/themes/rosepine/main.nix new file mode 100644 index 0000000..489b5dc --- /dev/null +++ b/themes/rosepine/main.nix @@ -0,0 +1,42 @@ +rec { + name = "Rosé Pine"; + author = "https://https://rosepinetheme.com"; + + text = bright.white; + subtext = "908caa"; + + base = normal.black; + surface = bright.black; + overlay = "26233a"; + + primary = normal.blue; + success = normal.green; + warning = normal.yellow; + error = normal.red; + + normal = { + black = "191724"; + red = "eb6f92"; + green = "87d683"; + yellow = "f6c177"; + blue = "31748f"; + magenta = "c4a7e7"; + cyan = "9ccfd8"; + white = "e0def4"; + pink = "ebbcba"; + orange = normal.pink; + }; + + bright = { + black = "1f1d2e"; + red = "eb6f92"; + green = "87d683"; + yellow = "f6c177"; + blue = "31748f"; + magenta = "c4a7e7"; + cyan = "9ccfd8"; + white = "e0def4"; + pink = "ebbcba"; + orange = bright.pink; + }; +} |