From 870b0340c61ff0d14910d0f29be0857aed38e3d2 Mon Sep 17 00:00:00 2001 From: Ian Johnson Date: Sat, 13 Dec 2025 12:18:28 -0500 Subject: [PATCH] feat: add selenized theme --- build.zig | 2 ++ build.zig.zon | 4 ++++ src/theme_files.zig | 2 ++ 3 files changed, 8 insertions(+) diff --git a/build.zig b/build.zig index d4c3ce8..cfdfd29 100644 --- a/build.zig +++ b/build.zig @@ -228,6 +228,8 @@ fn add_themes(b: *std.Build, exe: anytype) void { .{ "base16", "themes/woodland-dark.json" }, .{ "alabaster", "theme/alabaster-color-theme.json" }, .{ "ethereal", "themes/ethereal-color-theme.json" }, + .{ "selenized", "editors/visual-studio-code/themes/selenized-dark.json" }, + .{ "selenized", "editors/visual-studio-code/themes/selenized-light.json" }, }; inline for (theme_list) |list| { theme_file(b, exe, list[0], list[1]); diff --git a/build.zig.zon b/build.zig.zon index b23c6de..7847023 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -99,6 +99,10 @@ .url = "git+https://github.com/bjarneo/ethereal-vscode.git?ref=main#056e596b48f13306b366b8ca7a70326a924a9cff", .hash = "N-V-__8AAHRcEwAAvSM_ODzsp-La1PE4Ydrg8MR827anf94J", }, + .theme_selenized = .{ + .url = "git+https://github.com/jan-warchol/selenized?ref=master#9a753d5c575c48e29eeb2be745d9571b4cec42b3", + .hash = "N-V-__8AAFxeDgAAAxUwDQG7UYFdbTtDN_V7uCgmycPJNr0G", + }, .cbor = .{ .url = "git+https://github.com/neurocyte/cbor?ref=master#7d2eeb68c8a2fb3f4d6baad6cc04c521b92974c0", .hash = "cbor-1.0.0-RcQE_AswAQAPlqBCZXYQf9DZXn-0Ubt8Mk03ZcJWcsAG", diff --git a/src/theme_files.zig b/src/theme_files.zig index 84e3cfd..78ead04 100644 --- a/src/theme_files.zig +++ b/src/theme_files.zig @@ -50,6 +50,7 @@ pub const theme_files = [_]theme_file{ THEME("themes/kanagawa-wave-color-theme.json"), THEME("themes/kanagawa-dragon-color-theme.json"), THEME("themes/ethereal-color-theme.json"), + THEME("editors/visual-studio-code/themes/selenized-dark.json"), // base16 collection dark @@ -150,6 +151,7 @@ pub const theme_files = [_]theme_file{ THEME("themes/latte.json"), THEME("themes/kanagawa-lotus-color-theme.json"), THEME("theme/alabaster-color-theme.json"), + THEME("editors/visual-studio-code/themes/selenized-light.json"), // base16 collection light