diff --git a/build.zig b/build.zig index 77a046e..a6c2948 100644 --- a/build.zig +++ b/build.zig @@ -57,6 +57,8 @@ fn add_themes(b: *std.Build, exe: anytype) void { 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"); + theme_file(b, exe, "gruvbox_material", "themes/gruvbox-material-dark.json"); + theme_file(b, exe, "gruvbox_material", "themes/gruvbox-material-light.json"); 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"); diff --git a/build.zig.zon b/build.zig.zon index f735c75..5efb718 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -33,6 +33,10 @@ .url = "https://github.com/jdinhify/vscode-theme-gruvbox/archive/b1b9837e6747e040b69c7d46e502286bb0f257f7.tar.gz", .hash = "1220fcaf3181a354ee8a1413f3a15d2a1842e1377a95f636d4f26602d5bb38e45f00", }, + .theme_gruvbox_material = .{ + .url = "https://github.com/sainnhe/gruvbox-material-vscode/archive/1ef2c818f2651e0eae73bacad4ab87b94801f42b.tar.gz", + .hash = "122088d568238fcd69297acc42cf04555fbbc89e86b6a48f6ae5d66db387053621f1", + }, .theme_tokyo_night = .{ .url = "https://github.com/enkia/tokyo-night-vscode-theme/archive/55336bd57924021c174470d9f476a1db01eddb97.tar.gz", .hash = "1220f9729cd271c29dee0e199b2bc0f801cb657b603668680a07191b9a8c1b1f21fb", diff --git a/src/theme_files.zig b/src/theme_files.zig index 7f5c539..29dfe9f 100644 --- a/src/theme_files.zig +++ b/src/theme_files.zig @@ -24,6 +24,7 @@ pub const theme_files = [_]theme_file{ THEME("themes/gruvbox-dark-hard.json"), THEME("themes/gruvbox-dark-medium.json"), THEME("themes/gruvbox-dark-soft.json"), + THEME("themes/gruvbox-material-dark.json"), THEME("themes/tokyo-night-storm-color-theme.json"), THEME("themes/tokyo-night-color-theme.json"), THEME("ayu-dark.json"), @@ -51,6 +52,7 @@ pub const theme_files = [_]theme_file{ THEME("themes/gruvbox-light-hard.json"), THEME("themes/gruvbox-light-medium.json"), THEME("themes/gruvbox-light-soft.json"), + THEME("themes/gruvbox-material-light.json"), THEME("extensions/theme-defaults/themes/light_vs.json"), THEME("extensions/theme-defaults/themes/light_plus.json"), THEME("extensions/theme-defaults/themes/light_modern.json"),