|
| 1 | +{ |
| 2 | + "name": "Kimbie Dark", |
| 3 | + "type": "dark", |
| 4 | + "colors": { |
| 5 | + "input.background": "#51412c", |
| 6 | + "dropdown.background": "#51412c", |
| 7 | + "editor.background": "#221a0f", |
| 8 | + "editor.foreground": "#d3af86", |
| 9 | + "focusBorder": "#a57a4c", |
| 10 | + "list.highlightForeground": "#e3b583", |
| 11 | + "list.activeSelectionBackground": "#7c5021", |
| 12 | + "list.hoverBackground": "#7c502166", |
| 13 | + "quickInputList.focusBackground": "#7c5021AA", |
| 14 | + "list.inactiveSelectionBackground": "#645342", |
| 15 | + "pickerGroup.foreground": "#e3b583", |
| 16 | + "pickerGroup.border": "#e3b583", |
| 17 | + "inputOption.activeBorder": "#a57a4c", |
| 18 | + "selection.background": "#84613daa", |
| 19 | + "editor.selectionBackground": "#84613daa", |
| 20 | + "minimap.selectionHighlight": "#84613daa", |
| 21 | + "editorWidget.background": "#131510", |
| 22 | + "editorHoverWidget.background": "#221a14", |
| 23 | + "editorGroupHeader.tabsBackground": "#131510", |
| 24 | + "editorLineNumber.activeForeground": "#adadad", |
| 25 | + "tab.inactiveBackground": "#131510", |
| 26 | + "tab.lastPinnedBorder": "#51412c", |
| 27 | + "titleBar.activeBackground": "#423523", |
| 28 | + "statusBar.background": "#423523", |
| 29 | + "statusBar.debuggingBackground": "#423523", |
| 30 | + "statusBar.noFolderBackground": "#423523", |
| 31 | + "statusBarItem.remoteBackground": "#6e583b", |
| 32 | + "ports.iconRunningProcessForeground": "#369432", |
| 33 | + "activityBar.background": "#221a0f", |
| 34 | + "activityBar.foreground": "#d3af86", |
| 35 | + "activityBarItem.profilesBackground": "#47351d", |
| 36 | + "sideBar.background": "#362712", |
| 37 | + "menu.background": "#362712", |
| 38 | + "menu.foreground": "#CCCCCC", |
| 39 | + "editor.lineHighlightBackground": "#5e452b", |
| 40 | + "editorCursor.foreground": "#d3af86", |
| 41 | + "editorWhitespace.foreground": "#a57a4c", |
| 42 | + "peekViewTitle.background": "#362712", |
| 43 | + "peekView.border": "#5e452b", |
| 44 | + "peekViewResult.background": "#362712", |
| 45 | + "peekViewEditor.background": "#221a14", |
| 46 | + "peekViewEditor.matchHighlightBackground": "#84613daa", |
| 47 | + "button.background": "#6e583b", |
| 48 | + "inputValidation.infoBorder": "#1b60a5", |
| 49 | + "inputValidation.infoBackground": "#2b2a42", |
| 50 | + "inputValidation.warningBackground": "#51412c", |
| 51 | + "inputValidation.errorBackground": "#5f0d0d", |
| 52 | + "inputValidation.errorBorder": "#9d2f23", |
| 53 | + "badge.background": "#7f5d38", |
| 54 | + "progressBar.background": "#7f5d38" |
| 55 | + }, |
| 56 | + "tokenColors": [ |
| 57 | + { |
| 58 | + "settings": { |
| 59 | + "foreground": "#d3af86" |
| 60 | + } |
| 61 | + }, |
| 62 | + { |
| 63 | + "scope": [ |
| 64 | + "meta.embedded", |
| 65 | + "source.groovy.embedded", |
| 66 | + "string meta.image.inline.markdown", |
| 67 | + "variable.legacy.builtin.python" |
| 68 | + ], |
| 69 | + "settings": { |
| 70 | + "foreground": "#d3af86" |
| 71 | + } |
| 72 | + }, |
| 73 | + { |
| 74 | + "name": "Text", |
| 75 | + "scope": "variable.parameter.function", |
| 76 | + "settings": { |
| 77 | + "foreground": "#d3af86" |
| 78 | + } |
| 79 | + }, |
| 80 | + { |
| 81 | + "name": "Comments", |
| 82 | + "scope": ["comment", "punctuation.definition.comment"], |
| 83 | + "settings": { |
| 84 | + "foreground": "#a57a4c" |
| 85 | + } |
| 86 | + }, |
| 87 | + { |
| 88 | + "name": "Punctuation", |
| 89 | + "scope": [ |
| 90 | + "punctuation.definition.string", |
| 91 | + "punctuation.definition.variable", |
| 92 | + "punctuation.definition.string", |
| 93 | + "punctuation.definition.parameters", |
| 94 | + "punctuation.definition.string", |
| 95 | + "punctuation.definition.array" |
| 96 | + ], |
| 97 | + "settings": { |
| 98 | + "foreground": "#d3af86" |
| 99 | + } |
| 100 | + }, |
| 101 | + { |
| 102 | + "name": "Delimiters", |
| 103 | + "scope": "none", |
| 104 | + "settings": { |
| 105 | + "foreground": "#d3af86" |
| 106 | + } |
| 107 | + }, |
| 108 | + { |
| 109 | + "name": "Operators", |
| 110 | + "scope": "keyword.operator", |
| 111 | + "settings": { |
| 112 | + "foreground": "#d3af86" |
| 113 | + } |
| 114 | + }, |
| 115 | + { |
| 116 | + "name": "Keywords", |
| 117 | + "scope": [ |
| 118 | + "keyword", |
| 119 | + "keyword.control", |
| 120 | + "keyword.operator.new.cpp", |
| 121 | + "keyword.operator.delete.cpp", |
| 122 | + "keyword.other.using", |
| 123 | + "keyword.other.operator" |
| 124 | + ], |
| 125 | + "settings": { |
| 126 | + "foreground": "#98676a" |
| 127 | + } |
| 128 | + }, |
| 129 | + { |
| 130 | + "name": "Variables", |
| 131 | + "scope": "variable", |
| 132 | + "settings": { |
| 133 | + "foreground": "#dc3958" |
| 134 | + } |
| 135 | + }, |
| 136 | + { |
| 137 | + "name": "Functions", |
| 138 | + "scope": ["entity.name.function", "meta.require", "support.function.any-method"], |
| 139 | + "settings": { |
| 140 | + "foreground": "#8ab1b0" |
| 141 | + } |
| 142 | + }, |
| 143 | + { |
| 144 | + "name": "Classes", |
| 145 | + "scope": [ |
| 146 | + "support.class", |
| 147 | + "entity.name.class", |
| 148 | + "entity.name.type", |
| 149 | + "entity.name.namespace", |
| 150 | + "entity.name.scope-resolution" |
| 151 | + ], |
| 152 | + "settings": { |
| 153 | + "foreground": "#f06431" |
| 154 | + } |
| 155 | + }, |
| 156 | + { |
| 157 | + "name": "Methods", |
| 158 | + "scope": "keyword.other.special-method", |
| 159 | + "settings": { |
| 160 | + "foreground": "#8ab1b0" |
| 161 | + } |
| 162 | + }, |
| 163 | + { |
| 164 | + "name": "Storage", |
| 165 | + "scope": "storage", |
| 166 | + "settings": { |
| 167 | + "foreground": "#98676a" |
| 168 | + } |
| 169 | + }, |
| 170 | + { |
| 171 | + "name": "Support", |
| 172 | + "scope": "support.function", |
| 173 | + "settings": { |
| 174 | + "foreground": "#7e602c" |
| 175 | + } |
| 176 | + }, |
| 177 | + { |
| 178 | + "name": "Strings, Inherited Class", |
| 179 | + "scope": ["string", "constant.other.symbol", "entity.other.inherited-class"], |
| 180 | + "settings": { |
| 181 | + "foreground": "#889b4a" |
| 182 | + } |
| 183 | + }, |
| 184 | + { |
| 185 | + "name": "Integers", |
| 186 | + "scope": "constant.numeric", |
| 187 | + "settings": { |
| 188 | + "foreground": "#f79a32" |
| 189 | + } |
| 190 | + }, |
| 191 | + { |
| 192 | + "name": "Floats", |
| 193 | + "scope": "none", |
| 194 | + "settings": { |
| 195 | + "foreground": "#f79a32" |
| 196 | + } |
| 197 | + }, |
| 198 | + { |
| 199 | + "name": "Boolean", |
| 200 | + "scope": "none", |
| 201 | + "settings": { |
| 202 | + "foreground": "#f79a32" |
| 203 | + } |
| 204 | + }, |
| 205 | + { |
| 206 | + "name": "Constants", |
| 207 | + "scope": "constant", |
| 208 | + "settings": { |
| 209 | + "foreground": "#f79a32" |
| 210 | + } |
| 211 | + }, |
| 212 | + { |
| 213 | + "name": "Tags", |
| 214 | + "scope": "entity.name.tag", |
| 215 | + "settings": { |
| 216 | + "foreground": "#dc3958" |
| 217 | + } |
| 218 | + }, |
| 219 | + { |
| 220 | + "name": "Attributes", |
| 221 | + "scope": "entity.other.attribute-name", |
| 222 | + "settings": { |
| 223 | + "foreground": "#f79a32" |
| 224 | + } |
| 225 | + }, |
| 226 | + { |
| 227 | + "name": "Attribute IDs", |
| 228 | + "scope": ["entity.other.attribute-name.id", "punctuation.definition.entity"], |
| 229 | + "settings": { |
| 230 | + "foreground": "#8ab1b0" |
| 231 | + } |
| 232 | + }, |
| 233 | + { |
| 234 | + "name": "Selector", |
| 235 | + "scope": "meta.selector", |
| 236 | + "settings": { |
| 237 | + "foreground": "#98676a" |
| 238 | + } |
| 239 | + }, |
| 240 | + { |
| 241 | + "name": "Values", |
| 242 | + "scope": "none", |
| 243 | + "settings": { |
| 244 | + "foreground": "#f79a32" |
| 245 | + } |
| 246 | + }, |
| 247 | + { |
| 248 | + "name": "Headings", |
| 249 | + "scope": ["markup.heading", "markup.heading.setext", "punctuation.definition.heading", "entity.name.section"], |
| 250 | + "settings": { |
| 251 | + "fontStyle": "bold", |
| 252 | + "foreground": "#8ab1b0" |
| 253 | + } |
| 254 | + }, |
| 255 | + { |
| 256 | + "name": "Units", |
| 257 | + "scope": "keyword.other.unit", |
| 258 | + "settings": { |
| 259 | + "foreground": "#f79a32" |
| 260 | + } |
| 261 | + }, |
| 262 | + { |
| 263 | + "name": "Bold", |
| 264 | + "scope": ["markup.bold", "punctuation.definition.bold"], |
| 265 | + "settings": { |
| 266 | + "fontStyle": "bold", |
| 267 | + "foreground": "#f06431" |
| 268 | + } |
| 269 | + }, |
| 270 | + { |
| 271 | + "name": "Italic", |
| 272 | + "scope": ["markup.italic", "punctuation.definition.italic"], |
| 273 | + "settings": { |
| 274 | + "fontStyle": "italic", |
| 275 | + "foreground": "#98676a" |
| 276 | + } |
| 277 | + }, |
| 278 | + { |
| 279 | + "scope": "markup.strikethrough", |
| 280 | + "settings": { |
| 281 | + "fontStyle": "strikethrough" |
| 282 | + } |
| 283 | + }, |
| 284 | + { |
| 285 | + "name": "Code", |
| 286 | + "scope": "markup.inline.raw", |
| 287 | + "settings": { |
| 288 | + "foreground": "#889b4a" |
| 289 | + } |
| 290 | + }, |
| 291 | + { |
| 292 | + "name": "Link Text", |
| 293 | + "scope": "string.other.link", |
| 294 | + "settings": { |
| 295 | + "foreground": "#dc3958" |
| 296 | + } |
| 297 | + }, |
| 298 | + { |
| 299 | + "name": "Link Url", |
| 300 | + "scope": "meta.link", |
| 301 | + "settings": { |
| 302 | + "foreground": "#f79a32" |
| 303 | + } |
| 304 | + }, |
| 305 | + { |
| 306 | + "name": "Lists", |
| 307 | + "scope": "markup.list", |
| 308 | + "settings": { |
| 309 | + "foreground": "#dc3958" |
| 310 | + } |
| 311 | + }, |
| 312 | + { |
| 313 | + "name": "Quotes", |
| 314 | + "scope": "markup.quote", |
| 315 | + "settings": { |
| 316 | + "foreground": "#f79a32" |
| 317 | + } |
| 318 | + }, |
| 319 | + { |
| 320 | + "name": "Separator", |
| 321 | + "scope": "meta.separator", |
| 322 | + "settings": { |
| 323 | + "foreground": "#d3af86" |
| 324 | + } |
| 325 | + }, |
| 326 | + { |
| 327 | + "name": "Inserted", |
| 328 | + "scope": "markup.inserted", |
| 329 | + "settings": { |
| 330 | + "foreground": "#889b4a" |
| 331 | + } |
| 332 | + }, |
| 333 | + { |
| 334 | + "name": "Deleted", |
| 335 | + "scope": "markup.deleted", |
| 336 | + "settings": { |
| 337 | + "foreground": "#dc3958" |
| 338 | + } |
| 339 | + }, |
| 340 | + { |
| 341 | + "name": "Changed", |
| 342 | + "scope": "markup.changed", |
| 343 | + "settings": { |
| 344 | + "foreground": "#98676a" |
| 345 | + } |
| 346 | + }, |
| 347 | + { |
| 348 | + "name": "Colors", |
| 349 | + "scope": "constant.other.color", |
| 350 | + "settings": { |
| 351 | + "foreground": "#7e602c" |
| 352 | + } |
| 353 | + }, |
| 354 | + { |
| 355 | + "name": "Regular Expressions", |
| 356 | + "scope": "string.regexp", |
| 357 | + "settings": { |
| 358 | + "foreground": "#7e602c" |
| 359 | + } |
| 360 | + }, |
| 361 | + { |
| 362 | + "name": "Escape Characters", |
| 363 | + "scope": "constant.character.escape", |
| 364 | + "settings": { |
| 365 | + "foreground": "#7e602c" |
| 366 | + } |
| 367 | + }, |
| 368 | + { |
| 369 | + "name": "Embedded", |
| 370 | + "scope": ["punctuation.section.embedded", "variable.interpolation"], |
| 371 | + "settings": { |
| 372 | + "foreground": "#088649" |
| 373 | + } |
| 374 | + }, |
| 375 | + { |
| 376 | + "name": "Invalid", |
| 377 | + "scope": "invalid", |
| 378 | + "settings": { |
| 379 | + "foreground": "#dc3958" |
| 380 | + } |
| 381 | + } |
| 382 | + ], |
| 383 | + "semanticHighlighting": true |
| 384 | +} |
0 commit comments