diff --git a/build.zig b/build.zig index 6bcd497..9fe5915 100644 --- a/build.zig +++ b/build.zig @@ -79,7 +79,6 @@ fn add_themes(b: *std.Build, exe: anytype) void { 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"); - theme_file(b, exe, "spacedust", "themes/Spacedust-color-theme.json"); theme_file(b, exe, "catppuccin", "themes/frappe.json"); theme_file(b, exe, "catppuccin", "themes/latte.json"); theme_file(b, exe, "catppuccin", "themes/macchiato.json"); diff --git a/build.zig.zon b/build.zig.zon index 99cab58..1cbaed4 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -65,10 +65,6 @@ .url = "https://github.com/nordtheme/visual-studio-code/archive/8ead09822c02d0d49d0f764104505e5a34d3689f.tar.gz", .hash = "12200a932586d96e15f5c325b4e671cf18257a0c125e3c5c46cdd18b201e454bf90f", }, - .theme_spacedust = .{ - .url = "https://github.com/wallsified/Spacedust-VSCode/archive/160a0e266a369c336d5393c93decc078c636fc3d.tar.gz", - .hash = "122027fbeddeabd06d699e81c408dadf17d60c5d538e13e7c69f2685ca63262a2bda", - }, .theme_catppuccin = .{ .url = "https://github.com/neurocyte/catppuccin-flow/releases/download/catppuccin-vsc-v3.15.2/vscode-3.15.2.tgz", .hash = "122076748115e6aa1eb16fe79f525f48b62e5783af943026544806e15ecc711daa7e", diff --git a/src/theme_files.zig b/src/theme_files.zig index 41e28c6..569fecf 100644 --- a/src/theme_files.zig +++ b/src/theme_files.zig @@ -42,7 +42,6 @@ pub const theme_files = [_]theme_file{ THEME("themes/adwaita-dark.json"), THEME("themes/everforest-dark.json"), THEME("themes/nord-color-theme.json"), - THEME("themes/Spacedust-color-theme.json"), THEME("themes/frappe.json"), THEME("themes/macchiato.json"), THEME("themes/mocha.json"),