feat: add tokyo night themes
This commit is contained in:
parent
d268baa972
commit
ab24c12c24
4 changed files with 13 additions and 0 deletions
|
|
@ -179,6 +179,9 @@ fn load_token_settings_object(file_name: []const u8, scopes_name: ?[]const u8, c
|
|||
} else if (eql(u8, "italic underline", value)) {
|
||||
style.fs = .italic;
|
||||
style.fs = .underline;
|
||||
} else if (eql(u8, "bold italic", value)) {
|
||||
style.fs = .bold;
|
||||
style.fs = .italic;
|
||||
} else if (eql(u8, "strikethrough", value)) {
|
||||
style.fs = .strikethrough;
|
||||
} else if (eql(u8, "", value)) {
|
||||
|
|
|
|||
|
|
@ -33,6 +33,9 @@ pub const theme_files = [_]theme_file{
|
|||
THEME("extensions/theme-defaults/themes/light_vs.json"),
|
||||
THEME("extensions/theme-defaults/themes/light_plus.json"),
|
||||
THEME("extensions/theme-defaults/themes/light_modern.json"),
|
||||
THEME("themes/tokyo-night-storm-color-theme.json"),
|
||||
THEME("themes/tokyo-night-color-theme.json"),
|
||||
THEME("themes/tokyo-night-light-color-theme.json"),
|
||||
};
|
||||
|
||||
fn THEME(comptime file_path: []const u8) theme_file {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue