Skip to content

Commit

Permalink
Update catppuccin theme
Browse files Browse the repository at this point in the history
  • Loading branch information
neurocyte committed Nov 4, 2024
1 parent 08c07e2 commit d49b4cd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ fn add_themes(b: *std.Build, exe: anytype) void {
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", "frappe.json");
theme_file(b, exe, "catppuccin", "latte.json");
theme_file(b, exe, "catppuccin", "macchiato.json");
theme_file(b, exe, "catppuccin", "mocha.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");
theme_file(b, exe, "catppuccin", "themes/mocha.json");
}
4 changes: 2 additions & 2 deletions build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@
.hash = "122027fbeddeabd06d699e81c408dadf17d60c5d538e13e7c69f2685ca63262a2bda",
},
.theme_catppuccin = .{
.url = "https://github.com/catppuccin/vscode/archive/75805b74e052fe6673a1bdf3948bfa5b481edb7e.tar.gz",
.hash = "1220bee1c4901235e1653b324d2ee1bea69ee9c88d64a12f599aa31ad180cfef0857",
.url = "https://github.com/neurocyte/catppuccin-flow/releases/download/catppuccin-vsc-v3.15.2/vscode-3.15.2.tgz",
.hash = "122076748115e6aa1eb16fe79f525f48b62e5783af943026544806e15ecc711daa7e",
}
},
.paths = .{
Expand Down
8 changes: 4 additions & 4 deletions src/theme_files.zig
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ pub const theme_files = [_]theme_file{
THEME("themes/everforest-dark.json"),
THEME("themes/nord-color-theme.json"),
THEME("themes/Spacedust-color-theme.json"),
THEME("frappe.json"),
THEME("macchiato.json"),
THEME("mocha.json"),
THEME("themes/frappe.json"),
THEME("themes/macchiato.json"),
THEME("themes/mocha.json"),

// light themes

Expand All @@ -65,7 +65,7 @@ pub const theme_files = [_]theme_file{
THEME("themes/rose-pine-dawn-color-theme.json"),
THEME("themes/adwaita-light.json"),
THEME("themes/everforest-light.json"),
THEME("latte.json"),
THEME("themes/latte.json"),
};

fn THEME(comptime file_path: []const u8) theme_file {
Expand Down

0 comments on commit d49b4cd

Please sign in to comment.