kts colors got prefixed

This commit is contained in:
Natsu Kagami 2023-09-07 23:42:51 +02:00
parent 30a491024b
commit 33835e09fa
Signed by: nki
GPG key ID: 55A032EB38B49ADB

View file

@ -48,78 +48,78 @@ in
default = { default = {
attribute = "@attribute"; attribute = "@attribute";
comment = "@comment"; comment = "@comment";
conceal = "%opt{mauve}+i"; conceal = "%opt{kts_mauve}+i";
constant = "%opt{peach}"; constant = "%opt{kts_peach}";
constant_builtin_boolean = "%opt{sky}"; constant_builtin_boolean = "%opt{kts_sky}";
constant_character = "%opt{yellow}"; constant_character = "%opt{kts_yellow}";
constant_macro = "%opt{mauve}"; constant_macro = "%opt{kts_mauve}";
constant_numeric = "%opt{peach}"; constant_numeric = "%opt{kts_peach}";
constructor = "%opt{sapphire}"; constructor = "%opt{kts_sapphire}";
diff_plus = "%opt{green}"; diff_plus = "%opt{kts_green}";
diff_minus = "%opt{red}"; diff_minus = "%opt{kts_red}";
diff_delta = "%opt{blue}"; diff_delta = "%opt{kts_blue}";
diff_delta_moved = "%opt{mauve}"; diff_delta_moved = "%opt{kts_mauve}";
error = "%opt{red}+b"; error = "%opt{kts_red}+b";
function = "@function"; function = "@function";
function_builtin = "@builtin"; function_builtin = "@builtin";
function_macro = "+i@ts_function"; function_macro = "+i@ts_function";
hint = "%opt{blue}+b"; hint = "%opt{kts_blue}+b";
info = "%opt{green}+b"; info = "%opt{kts_green}+b";
keyword = "keyword"; keyword = "keyword";
keyword_conditional = "+i@ts_keyword"; keyword_conditional = "+i@ts_keyword";
keyword_control_conditional = "+i@ts_keyword"; keyword_control_conditional = "+i@ts_keyword";
keyword_control_directive = "+i@ts_keyword"; keyword_control_directive = "+i@ts_keyword";
keyword_control_import = "+i@ts_keyword"; keyword_control_import = "+i@ts_keyword";
keyword_directive = "+i@ts_keyword"; keyword_directive = "+i@ts_keyword";
label = "%opt{sapphire}+i"; label = "%opt{kts_sapphire}+i";
markup_bold = "%opt{peach}+b"; markup_bold = "%opt{kts_peach}+b";
markup_heading = "%opt{red}"; markup_heading = "%opt{kts_red}";
markup_heading_1 = "%opt{red}"; markup_heading_1 = "%opt{kts_red}";
markup_heading_2 = "%opt{mauve}"; markup_heading_2 = "%opt{kts_mauve}";
markup_heading_3 = "%opt{green}"; markup_heading_3 = "%opt{kts_green}";
markup_heading_4 = "%opt{yellow}"; markup_heading_4 = "%opt{kts_yellow}";
markup_heading_5 = "%opt{pink}"; markup_heading_5 = "%opt{kts_pink}";
markup_heading_6 = "%opt{teal}"; markup_heading_6 = "%opt{kts_teal}";
markup_heading_marker = "%opt{peach}+b"; markup_heading_marker = "%opt{kts_peach}+b";
markup_italic = "%opt{pink}+i"; markup_italic = "%opt{kts_pink}+i";
markup_list_checked = "%opt{green}"; markup_list_checked = "%opt{kts_green}";
markup_list_numbered = "%opt{blue}+i"; markup_list_numbered = "%opt{kts_blue}+i";
markup_list_unchecked = "%opt{teal}"; markup_list_unchecked = "%opt{kts_teal}";
markup_list_unnumbered = "%opt{mauve}"; markup_list_unnumbered = "%opt{kts_mauve}";
markup_link_label = "%opt{blue}"; markup_link_label = "%opt{kts_blue}";
markup_link_url = "%opt{teal}+u"; markup_link_url = "%opt{kts_teal}+u";
markup_link_uri = "%opt{teal}+u"; markup_link_uri = "%opt{kts_teal}+u";
markup_link_text = "%opt{blue}"; markup_link_text = "%opt{kts_blue}";
markup_quote = "%opt{gray1}"; markup_quote = "%opt{kts_gray1}";
markup_raw = "%opt{sky}"; markup_raw = "%opt{kts_sky}";
markup_raw_block = "%opt{sky}"; markup_raw_block = "%opt{kts_sky}";
markup_raw_inline = "%opt{green}"; markup_raw_inline = "%opt{kts_green}";
markup_strikethrough = "%opt{gray1}+s"; markup_strikethrough = "%opt{kts_gray1}+s";
namespace = "@module"; namespace = "@module";
operator = "@operator"; operator = "@operator";
property = "%opt{sky}"; property = "%opt{kts_sky}";
punctuation = "%opt{overlay2}"; punctuation = "%opt{kts_overlay2}";
punctuation_special = "%opt{sky}"; punctuation_special = "%opt{kts_sky}";
special = "%opt{blue}"; special = "%opt{kts_blue}";
spell = "%opt{mauve}"; spell = "%opt{kts_mauve}";
string = "%opt{green}"; string = "%opt{kts_green}";
string_regex = "%opt{peach}"; string_regex = "%opt{kts_peach}";
string_regexp = "%opt{peach}"; string_regexp = "%opt{kts_peach}";
string_escape = "%opt{mauve}"; string_escape = "%opt{kts_mauve}";
string_special = "%opt{blue}"; string_special = "%opt{kts_blue}";
string_special_path = "%opt{green}"; string_special_path = "%opt{kts_green}";
string_special_symbol = "%opt{mauve}"; string_special_symbol = "%opt{kts_mauve}";
string_symbol = "%opt{red}"; string_symbol = "%opt{kts_red}";
tag = "%opt{teal}"; tag = "%opt{kts_teal}";
tag_error = "%opt{red}"; tag_error = "%opt{kts_red}";
text_title = "%opt{mauve}"; text_title = "%opt{kts_mauve}";
type = "%opt{yellow}"; type = "%opt{kts_yellow}";
type_enum_variant = "%opt{flamingo}"; type_enum_variant = "%opt{kts_flamingo}";
variable = "@variable"; variable = "@variable";
variable_builtin = "@builtin"; variable_builtin = "@builtin";
variable_other_member = "%opt{teal}"; variable_other_member = "%opt{kts_teal}";
variable_parameter = "%opt{maroon}+i"; variable_parameter = "%opt{kts_maroon}+i";
warning = "%opt{peach}+b"; warning = "%opt{kts_peach}+b";
}; };
}; };