feat: add gruvbox themes

This commit is contained in:
CJ van den Berg 2024-02-08 18:10:46 +01:00
parent f821a416aa
commit d268baa972
3 changed files with 16 additions and 0 deletions

View file

@ -51,4 +51,10 @@ fn add_themes(b: *std.Build, exe: anytype) void {
theme_file(b, exe, "CRT", "themes/CRT-Gray-color-theme.json");
theme_file(b, exe, "CRT", "themes/CRT-Green-color-theme.json");
theme_file(b, exe, "CRT", "themes/CRT-Paper-color-theme.json");
theme_file(b, exe, "gruvbox", "themes/gruvbox-dark-hard.json");
theme_file(b, exe, "gruvbox", "themes/gruvbox-dark-medium.json");
theme_file(b, exe, "gruvbox", "themes/gruvbox-dark-soft.json");
theme_file(b, exe, "gruvbox", "themes/gruvbox-light-hard.json");
theme_file(b, exe, "gruvbox", "themes/gruvbox-light-medium.json");
theme_file(b, exe, "gruvbox", "themes/gruvbox-light-soft.json");
}