diff options
author | Freya Murphy <freya@freyacat.org> | 2025-07-02 10:57:28 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-07-02 10:57:28 -0400 |
commit | 2275414f403ae3b8f840f02087de6dd0847afb87 (patch) | |
tree | 2efcc9f54a40fc206c66b591510675962489ee51 /themes/rosepine/dawn.nix | |
parent | update zsh autocomplete/nvim comment color (diff) | |
download | dotfiles-nix-2275414f403ae3b8f840f02087de6dd0847afb87.tar.gz dotfiles-nix-2275414f403ae3b8f840f02087de6dd0847afb87.tar.bz2 dotfiles-nix-2275414f403ae3b8f840f02087de6dd0847afb87.zip |
add rosepine themes
Diffstat (limited to 'themes/rosepine/dawn.nix')
-rw-r--r-- | themes/rosepine/dawn.nix | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/themes/rosepine/dawn.nix b/themes/rosepine/dawn.nix new file mode 100644 index 0000000..e8bdac6 --- /dev/null +++ b/themes/rosepine/dawn.nix @@ -0,0 +1,42 @@ +rec { + name = "Rosé Pine Dawn"; + author = "https://https://rosepinetheme.com"; + + text = "575279"; + subtext = "797593"; + + base = normal.white; + surface = bright.white; + overlay = "f2e9e1"; + + primary = normal.blue; + success = normal.green; + warning = normal.yellow; + error = normal.red; + + normal = { + black = "191724"; + red = "b4637a"; + green = "87d683"; + yellow = "ea9d34"; + blue = "286983"; + magenta = "907aa9"; + cyan = "56949f"; + white = "faf4ed"; + pink = "232136"; + orange = normal.pink; + }; + + bright = { + black = "2a273f"; + red = "b4637a"; + green = "87d683"; + yellow = "ea9d34"; + blue = "286983"; + magenta = "907aa9"; + cyan = "56949f"; + white = "fffaf3"; + pink = "232136"; + orange = bright.pink; + }; +} |