feat: add everforest and nord themes

This commit is contained in:
CJ van den Berg 2024-05-16 22:30:35 +02:00
parent 0386d791da
commit 68a95a4984
4 changed files with 19 additions and 0 deletions

View file

@ -74,4 +74,7 @@ fn add_themes(b: *std.Build, exe: anytype) void {
theme_file(b, exe, "rose_pine", "themes/rose-pine-dawn-color-theme.json");
theme_file(b, exe, "adwaita", "themes/adwaita-dark.json");
theme_file(b, exe, "adwaita", "themes/adwaita-light.json");
theme_file(b, exe, "everforest", "themes/everforest-dark.json");
theme_file(b, exe, "everforest", "themes/everforest-light.json");
theme_file(b, exe, "nord", "themes/nord-color-theme.json");
}