|
25 | 25 | "editor.background": "#0e283f", |
26 | 26 | "editor.foreground": "#c7cbd6", |
27 | 27 |
|
| 28 | + "editor.lineHighlightBorder": "#232e4b", |
| 29 | + |
| 30 | + "editor.selectionForeground": "#c7cbd6", |
| 31 | + "editor.selectionBackground": "#123734", |
| 32 | + "editor.selectionHighlightBackground": "#123734", |
| 33 | + "editor.selectionHighlightBorder": "#123734", |
| 34 | + "editor.wordHighlightBackground": "#123734", |
| 35 | + "editor.wordHighlightBorder": "#123734", |
| 36 | + "editor.wordHighlightStrongBackground": "#123734", |
| 37 | + "editor.wordHighlightStrongBorder": "#123734", |
| 38 | + |
28 | 39 | "sideBarTitle.foreground": "#c7cbd6", |
29 | 40 | "editorBracketHighlight.foreground1": "#b48a49", |
30 | 41 | "editorBracketHighlight.foreground2": "#b48a49", |
|
36 | 47 | "activityBarBadge.background": "#be6d8d", |
37 | 48 | }, |
38 | 49 | "tokenColors": [ |
| 50 | + { |
| 51 | + "name": "Invalid", |
| 52 | + "scope": [ |
| 53 | + "invalid", |
| 54 | + "invalid.illegal" |
| 55 | + ], |
| 56 | + "settings": { |
| 57 | + "foreground": "#FF5370" |
| 58 | + } |
| 59 | + }, |
39 | 60 | { |
40 | 61 | "name": "Comment", |
41 | 62 | "scope": [ |
|
66 | 87 | "foreground": "#c7cbd6" |
67 | 88 | } |
68 | 89 | }, |
69 | | - { |
70 | | - "name": "Invalid", |
71 | | - "scope": [ |
72 | | - "invalid", |
73 | | - "invalid.illegal" |
74 | | - ], |
75 | | - "settings": { |
76 | | - "foreground": "#FF5370" |
77 | | - } |
78 | | - }, |
79 | | - { |
80 | | - "name": "Keyword, Storage", |
81 | | - "scope": [ |
82 | | - "keyword", |
83 | | - "storage.type", |
84 | | - "storage.modifier" |
85 | | - ], |
86 | | - "settings": { |
87 | | - "foreground": "#4391d4" |
88 | | - } |
89 | | - }, |
| 90 | + { |
| 91 | + "name": "Keyword, storages", |
| 92 | + "scope": [ |
| 93 | + "keyword", |
| 94 | + "keyword.operator.pattern.case.shell", |
| 95 | + "keyword.operator.pattern.case.shell meta.case.entry.pattern.shell meta.case.shell source.shell", |
| 96 | + "storage", |
| 97 | + ], |
| 98 | + "settings": { |
| 99 | + "foreground": "#4391d4", |
| 100 | + "fontStyle": "bold" |
| 101 | + } |
| 102 | + }, |
90 | 103 | { |
91 | 104 | "name": "Operator, Misc", |
92 | 105 | "scope": [ |
|
127 | 140 | "foreground": "#4391d4" |
128 | 141 | } |
129 | 142 | }, |
130 | | - { |
131 | | - "name": "Function, Special Method", |
132 | | - "scope": [ |
133 | | - "entity.name.function", |
134 | | - "meta.function-call", |
135 | | - "variable.function", |
136 | | - "support.function", |
137 | | - "keyword.other.special-method", |
138 | | - "entity.name.function.ts" |
139 | | - ], |
140 | | - "settings": { |
141 | | - "foreground": "#b48a49" |
142 | | - } |
143 | | - }, |
144 | 143 | { |
145 | 144 | "name": "Block Level Variables", |
146 | 145 | "scope": [ |
|
160 | 159 | "foreground": "#c7cbd6" |
161 | 160 | } |
162 | 161 | }, |
| 162 | + { |
| 163 | + "name": "Numbers", |
| 164 | + "scope": [ |
| 165 | + "constant.numeric" |
| 166 | + ], |
| 167 | + "settings": { |
| 168 | + "foreground": "#be6d8d", |
| 169 | + "fontStyle": "bold" |
| 170 | + } |
| 171 | + }, |
163 | 172 | { |
164 | 173 | "name": "Number, Constant, Function Argument, Tag Attribute, Embedded", |
165 | 174 | "scope": [ |
166 | | - "constant.numeric", |
167 | 175 | "constant.language", |
168 | 176 | "support.constant", |
169 | 177 | "constant.character", |
|
196 | 204 | "scope": [ |
197 | 205 | "constant.other.symbol", |
198 | 206 | "constant.other.key", |
199 | | - "entity.other.inherited-class", |
200 | 207 | "markup.heading", |
201 | 208 | "markup.inserted.git_gutter", |
202 | 209 | "meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js" |
|
206 | 213 | } |
207 | 214 | }, |
208 | 215 | { |
209 | | - "name": "Class, Support", |
| 216 | + "name": "Class declaration, Support", |
210 | 217 | "scope": [ |
211 | 218 | "entity.name", |
212 | 219 | "support.type", |
|
218 | 225 | "support.type.sys-types" |
219 | 226 | ], |
220 | 227 | "settings": { |
221 | | - "foreground": "#be6d8d" |
| 228 | + "foreground": "#c7cbd6", |
| 229 | + "fontStyle": "bold" |
| 230 | + } |
| 231 | + }, |
| 232 | + |
| 233 | + { |
| 234 | + "name": "Function, Special Method", |
| 235 | + "scope": [ |
| 236 | + "entity.name.function", |
| 237 | + "meta.function-call", |
| 238 | + "variable.function", |
| 239 | + "support.function", |
| 240 | + "keyword.other.special-method", |
| 241 | + "entity.name.function.ts", |
| 242 | + "entity.name.command.shell" |
| 243 | + ], |
| 244 | + "settings": { |
| 245 | + "foreground": "#b48a49", |
| 246 | + "fontStyle": "" |
222 | 247 | } |
223 | 248 | }, |
224 | 249 | { |
|
244 | 269 | "foreground": "#B2CCD6" |
245 | 270 | } |
246 | 271 | }, |
247 | | - { |
248 | | - "name": "Sub-methods", |
249 | | - "scope": [ |
250 | | - "entity.name.module.js", |
251 | | - "variable.import.parameter.js", |
252 | | - "variable.other.class.js" |
253 | | - ], |
254 | | - "settings": { |
255 | | - "foreground": "#97564b" |
256 | | - } |
257 | | - }, |
258 | 272 | { |
259 | 273 | "name": "Language methods", |
260 | 274 | "scope": [ |
261 | 275 | "variable.language" |
262 | 276 | ], |
263 | 277 | "settings": { |
264 | | - "fontStyle": "italic", |
265 | | - "foreground": "#FF5370" |
| 278 | + "foreground": "#b48a49", |
| 279 | + "fontStyle": "italic" |
266 | 280 | } |
267 | 281 | }, |
268 | 282 | { |
|
275 | 289 | "foreground": "#97564b" |
276 | 290 | } |
277 | 291 | }, |
278 | | - { |
279 | | - "name": "meta.method.js", |
280 | | - "scope": [ |
281 | | - "meta.class-method.js entity.name.function.js", |
282 | | - "variable.function.constructor" |
283 | | - ], |
284 | | - "settings": { |
285 | | - "foreground": "#97564b" |
286 | | - } |
287 | | - }, |
288 | 292 | { |
289 | 293 | "name": "Attributes", |
290 | 294 | "scope": [ |
|
401 | 405 | } |
402 | 406 | }, |
403 | 407 | { |
404 | | - "name": "JSON Key - Level 0", |
| 408 | + "name": "JSON Key", |
405 | 409 | "scope": [ |
406 | 410 | "source.json meta.structure.dictionary.json support.type.property-name.json" |
407 | 411 | ], |
408 | 412 | "settings": { |
409 | | - "foreground": "#c7cbd6" |
410 | | - } |
411 | | - }, |
412 | | - { |
413 | | - "name": "JSON Key - Level 1", |
414 | | - "scope": [ |
415 | | - "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" |
416 | | - ], |
417 | | - "settings": { |
418 | | - "foreground": "#c7cbd6" |
419 | | - } |
420 | | - }, |
421 | | - { |
422 | | - "name": "JSON Key - Level 2", |
423 | | - "scope": [ |
424 | | - "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" |
425 | | - ], |
426 | | - "settings": { |
427 | | - "foreground": "#c7cbd6" |
428 | | - } |
429 | | - }, |
430 | | - { |
431 | | - "name": "JSON Key - Level 3", |
432 | | - "scope": [ |
433 | | - "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" |
434 | | - ], |
435 | | - "settings": { |
436 | | - "foreground": "#FF5370" |
437 | | - } |
438 | | - }, |
439 | | - { |
440 | | - "name": "JSON Key - Level 4", |
441 | | - "scope": [ |
442 | | - "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" |
443 | | - ], |
444 | | - "settings": { |
445 | | - "foreground": "#C17E70" |
446 | | - } |
447 | | - }, |
448 | | - { |
449 | | - "name": "JSON Key - Level 5", |
450 | | - "scope": [ |
451 | | - "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" |
452 | | - ], |
453 | | - "settings": { |
454 | | - "foreground": "#97564b" |
455 | | - } |
456 | | - }, |
457 | | - { |
458 | | - "name": "JSON Key - Level 6", |
459 | | - "scope": [ |
460 | | - "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" |
461 | | - ], |
462 | | - "settings": { |
463 | | - "foreground": "#c7cbd6" |
464 | | - } |
465 | | - }, |
466 | | - { |
467 | | - "name": "JSON Key - Level 7", |
468 | | - "scope": [ |
469 | | - "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" |
470 | | - ], |
471 | | - "settings": { |
472 | | - "foreground": "#be6d8d" |
473 | | - } |
474 | | - }, |
475 | | - { |
476 | | - "name": "JSON Key - Level 8", |
477 | | - "scope": [ |
478 | | - "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" |
479 | | - ], |
480 | | - "settings": { |
481 | | - "foreground": "#C3E88D" |
| 413 | + "foreground": "#c7cbd6", |
482 | 414 | } |
483 | 415 | }, |
484 | 416 | { |
|
0 commit comments