feat: add ayu themes

This commit is contained in:
CJ van den Berg 2024-02-19 10:20:06 +01:00
parent ab24c12c24
commit 42399273a9
4 changed files with 19 additions and 0 deletions

View file

@ -60,4 +60,10 @@ fn add_themes(b: *std.Build, exe: anytype) void {
theme_file(b, exe, "tokyo_night", "themes/tokyo-night-storm-color-theme.json");
theme_file(b, exe, "tokyo_night", "themes/tokyo-night-color-theme.json");
theme_file(b, exe, "tokyo_night", "themes/tokyo-night-light-color-theme.json");
theme_file(b, exe, "ayu", "ayu-dark.json");
theme_file(b, exe, "ayu", "ayu-dark-bordered.json");
theme_file(b, exe, "ayu", "ayu-mirage.json");
theme_file(b, exe, "ayu", "ayu-mirage-bordered.json");
theme_file(b, exe, "ayu", "ayu-light.json");
theme_file(b, exe, "ayu", "ayu-light-bordered.json");
}