|
| 1 | +# base16-kissa-macchiato |
| 2 | +# |
| 3 | +# Commentary: |
| 4 | +# Tinted Theming: (https://github.com/tinted-theming) |
| 5 | +# |
| 6 | +# Authors: |
| 7 | +# Scheme: rwendell (https://github.com/rwendell/kissa) |
| 8 | +# Template: Jamy Golden (https://github.com/JamyGolden) |
| 9 | + |
| 10 | +# palette |
| 11 | + |
| 12 | +declare-option str base00 'rgb:1f1c16' |
| 13 | +declare-option str base01 'rgb:35322d' |
| 14 | +declare-option str base02 'rgb:47443f' |
| 15 | +declare-option str base03 'rgb:b8a48c' |
| 16 | +declare-option str base04 'rgb:d4c4a8' |
| 17 | +declare-option str base05 'rgb:faf0e6' |
| 18 | +declare-option str base06 'rgb:e8d5b7' |
| 19 | +declare-option str base07 'rgb:fef4e4' |
| 20 | +declare-option str base08 'rgb:e87777' |
| 21 | +declare-option str base09 'rgb:da9050' |
| 22 | +declare-option str base0A 'rgb:eac67a' |
| 23 | +declare-option str base0B 'rgb:8cb870' |
| 24 | +declare-option str base0C 'rgb:6ab8b0' |
| 25 | +declare-option str base0D 'rgb:7fa8d4' |
| 26 | +declare-option str base0E 'rgb:b094cc' |
| 27 | +declare-option str base0F 'rgb:cc88aa' |
| 28 | + |
| 29 | +# code |
| 30 | + |
| 31 | +set-face global value "%opt{base09}" |
| 32 | +set-face global type "%opt{base08}" |
| 33 | +set-face global variable "%opt{base08}" |
| 34 | +set-face global module "%opt{base0D}" |
| 35 | +set-face global function "%opt{base0D}" |
| 36 | +set-face global identifier "%opt{base08}" |
| 37 | +set-face global string "%opt{base0B}" |
| 38 | +set-face global error "%opt{base08}" |
| 39 | +set-face global keyword "%opt{base0E}" |
| 40 | +set-face global operator "%opt{base05}" |
| 41 | +set-face global attribute "%opt{base09}" |
| 42 | +set-face global bracket "%opt{base05}+b" |
| 43 | +set-face global arguement "%opt{base09}" |
| 44 | +set-face global comma "%opt{base05}" |
| 45 | +set-face global constant "%opt{base09}+b" |
| 46 | +set-face global comment "%opt{base03}+i" |
| 47 | +set-face global documentation "%opt{base03}+i" |
| 48 | +set-face global docstring "%opt{base03}+i" |
| 49 | +set-face global docstring "%opt{base0A}" |
| 50 | +set-face global meta "%opt{base0C}" |
| 51 | +set-face global builtin "%opt{base0C}+b" |
| 52 | + |
| 53 | +# text |
| 54 | + |
| 55 | +set-face global title "%opt{base0E}" |
| 56 | +set-face global header "%opt{base0D}" |
| 57 | +set-face global bold "%opt{base0E}" |
| 58 | +set-face global italic "%opt{base0E}" |
| 59 | +set-face global mono "%opt{base0B}" |
| 60 | +set-face global block "%opt{base0D}" |
| 61 | +set-face global link "%opt{base0B}" |
| 62 | +set-face global bullet "%opt{base0B}" |
| 63 | +set-face global list "%opt{base05}" |
| 64 | + |
| 65 | +# kakoune UI |
| 66 | + |
| 67 | +set-face global Default "%opt{base05},%opt{base00}" |
| 68 | +set-face global PrimarySelection "%opt{base00},%opt{base0A}" |
| 69 | +set-face global SecondarySelection "%opt{base03},%opt{base0A}" |
| 70 | +set-face global PrimaryCursor "%opt{base00},%opt{base05}" |
| 71 | +set-face global SecondaryCursor "%opt{base00},%opt{base0C}" |
| 72 | +set-face global PrimaryCursorEol "%opt{base00},%opt{base0A}" |
| 73 | +set-face global SecondaryCursorEol "%opt{base00},%opt{base0D}" |
| 74 | +set-face global LineNumbers "%opt{base04},%opt{base00}" |
| 75 | +set-face global LineNumberCursor "%opt{base0A},%opt{base00}+b" |
| 76 | +set-face global LineNumbersWrapped "%opt{base04},%opt{base00}+i" |
| 77 | +set-face global MenuForeground "%opt{base06},%opt{base01}+b" |
| 78 | +set-face global MenuBackground "%opt{base0D},%opt{base07}" |
| 79 | +set-face global MenuInfo "%opt{base0D},%opt{base07}" |
| 80 | +set-face global Information "%opt{base01},%opt{base07}" |
| 81 | +set-face global Error "%opt{base01},%opt{base08}" |
| 82 | +set-face global DiagnosticError "%opt{base08}" |
| 83 | +set-face global DiagnosticWarning "%opt{base0A}" |
| 84 | +set-face global StatusLine "%opt{base04},%opt{base02}" |
| 85 | +set-face global StatusLineMode "%opt{base0A},%opt{base02}" |
| 86 | +set-face global StatusLineInfo "%opt{base06},%opt{base02}" |
| 87 | +set-face global StatusLineValue "%opt{base04},%opt{base02}" |
| 88 | +set-face global StatusCursor "%opt{base02},%opt{base05}" |
| 89 | +set-face global Prompt "%opt{base0A},%opt{base02}" |
| 90 | +set-face global MatchingChar "%opt{base0D},%opt{base00}" |
| 91 | +set-face global Whitespace "%opt{base01},%opt{base00}+f" |
| 92 | +set-face global WrapMarker Whitespace |
| 93 | +set-face global BufferPadding "%opt{base04},%opt{base00}" |
| 94 | +set-face global Search "%opt{base05},%opt{base01}" |
| 95 | + |
| 96 | +# LSP |
| 97 | + |
| 98 | +set-face global ts_attribute "%opt{base0D}" |
| 99 | +set-face global ts_comment "%opt{base04}+i" |
| 100 | +set-face global ts_conceal "%opt{base0E}+i" |
| 101 | +set-face global ts_constant "%opt{base09}" |
| 102 | +set-face global ts_constant_builtin_boolean "%opt{base0C}" |
| 103 | +set-face global ts_constant_character "%opt{base0A}" |
| 104 | +set-face global ts_constant_macro "%opt{base0E}" |
| 105 | +set-face global ts_constructor "%opt{base0D}" |
| 106 | +set-face global ts_diff_plus "%opt{base0B}" |
| 107 | +set-face global ts_diff_minus "%opt{base08}" |
| 108 | +set-face global ts_diff_delta "%opt{base0D}" |
| 109 | +set-face global ts_diff_delta_moved "%opt{base0E}" |
| 110 | +set-face global ts_error "%opt{base08}+b" |
| 111 | +set-face global ts_function "%opt{base0D}" |
| 112 | +set-face global ts_function_builtin "%opt{base0D}+i" |
| 113 | +set-face global ts_function_macro "%opt{base0E}" |
| 114 | +set-face global ts_hint "%opt{base0D}+b" |
| 115 | +set-face global ts_info "%opt{base0B}+b" |
| 116 | +set-face global ts_keyword "%opt{base0E}" |
| 117 | +set-face global ts_keyword_conditional "%opt{base0E}+i" |
| 118 | +set-face global ts_keyword_control_conditional "%opt{base0E}+i" |
| 119 | +set-face global ts_keyword_control_directive "%opt{base0E}+i" |
| 120 | +set-face global ts_keyword_control_import "%opt{base0E}+i" |
| 121 | +set-face global ts_keyword_directive "%opt{base0E}+i" |
| 122 | +set-face global ts_label "%opt{base0E}+i" |
| 123 | +set-face global ts_markup_bold "%opt{base09}+b" |
| 124 | +set-face global ts_markup_heading "%opt{base08}" |
| 125 | +set-face global ts_markup_heading_1 "%opt{base08}" |
| 126 | +set-face global ts_markup_heading_2 "%opt{base0E}" |
| 127 | +set-face global ts_markup_heading_3 "%opt{base0B}" |
| 128 | +set-face global ts_markup_heading_4 "%opt{base0A}" |
| 129 | +set-face global ts_markup_heading_5 "%opt{base07}" |
| 130 | +set-face global ts_markup_heading_6 "%opt{base0C}" |
| 131 | +set-face global ts_markup_heading_marker "%opt{base09}+b" |
| 132 | +set-face global ts_markup_italic "%opt{base07}+i" |
| 133 | +set-face global ts_markup_list_checked "%opt{base0B}" |
| 134 | +set-face global ts_markup_list_numbered "%opt{base0D}+i" |
| 135 | +set-face global ts_markup_list_unchecked "%opt{base0C}" |
| 136 | +set-face global ts_markup_list_unnumbered "%opt{base0E}" |
| 137 | +set-face global ts_markup_link_label "%opt{base0D}" |
| 138 | +set-face global ts_markup_link_url "%opt{base0C}+u" |
| 139 | +set-face global ts_markup_link_uri "%opt{base0C}+u" |
| 140 | +set-face global ts_markup_link_text "%opt{base0D}" |
| 141 | +set-face global ts_markup_quote "%opt{base04}" |
| 142 | +set-face global ts_markup_raw "%opt{base0B}" |
| 143 | +set-face global ts_markup_strikethrough "%opt{base04}+s" |
| 144 | +set-face global ts_namespace "%opt{base0D}+i" |
| 145 | +set-face global ts_operator "%opt{base0C}" |
| 146 | +set-face global ts_property "%opt{base0C}" |
| 147 | +set-face global ts_punctuation "%opt{base04}" |
| 148 | +set-face global ts_punctuation_special "%opt{base0C}" |
| 149 | +set-face global ts_special "%opt{base0D}" |
| 150 | +set-face global ts_spell "%opt{base0E}" |
| 151 | +set-face global ts_string "%opt{base0B}" |
| 152 | +set-face global ts_string_regex "%opt{base09}" |
| 153 | +set-face global ts_string_regexp "%opt{base09}" |
| 154 | +set-face global ts_string_escape "%opt{base0E}" |
| 155 | +set-face global ts_string_special "%opt{base0D}" |
| 156 | +set-face global ts_string_special_path "%opt{base0B}" |
| 157 | +set-face global ts_string_special_symbol "%opt{base0E}" |
| 158 | +set-face global ts_string_symbol "%opt{base08}" |
| 159 | +set-face global ts_tag "%opt{base0E}" |
| 160 | +set-face global ts_tag_error "%opt{base08}" |
| 161 | +set-face global ts_text "%opt{base05}" |
| 162 | +set-face global ts_text_title "%opt{base0E}" |
| 163 | +set-face global ts_type "%opt{base0A}" |
| 164 | +set-face global ts_type_enum_variant "%opt{base03}" |
| 165 | +set-face global ts_variable "%opt{base05}" |
| 166 | +set-face global ts_variable_builtin "%opt{base08}" |
| 167 | +set-face global ts_variable_other_member "%opt{base0C}" |
| 168 | +set-face global ts_variable_parameter "%opt{base0F}+i" |
| 169 | +set-face global ts_warning "%opt{base09}+b" |
0 commit comments