@astrojs/starlight 0.24.0 → 0.24.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +57 -33
- package/__e2e__/fixtures/basics/node_modules/.bin/astro +2 -2
- package/__e2e__/fixtures/basics/package.json +1 -1
- package/components/Icons.ts +2 -0
- package/integrations/expressive-code/themes/night-owl-dark.jsonc +413 -413
- package/integrations/expressive-code/themes/night-owl-light.jsonc +405 -405
- package/integrations/virtual-user-config.ts +2 -2
- package/package.json +10 -14
- package/schema.ts +2 -2
- package/schemas/social.ts +2 -0
- package/translations/index.ts +2 -0
- package/translations/ko.json +2 -2
- package/translations/sk.json +29 -0
- package/translations/vi.json +1 -1
- package/user-components/Tabs.astro +6 -6
- package/utils/error-map.ts +1 -1
- package/utils/i18n.ts +34 -9
- package/utils/navigation.ts +1 -1
- package/utils/route-data.ts +2 -2
- package/utils/slugs.ts +2 -2
- package/utils/starlight-page.ts +4 -4
- package/utils/user-config.ts +5 -1
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"terminal.ansiBrightYellow": "#daaa01",
|
|
187
187
|
"terminal.ansiYellow": "#E0AF02",
|
|
188
188
|
"terminal.background": "#F6F6F6",
|
|
189
|
-
"terminal.foreground": "#403f53"
|
|
189
|
+
"terminal.foreground": "#403f53",
|
|
190
190
|
},
|
|
191
191
|
"tokenColors": [
|
|
192
192
|
{
|
|
@@ -195,117 +195,117 @@
|
|
|
195
195
|
"markup.changed",
|
|
196
196
|
"meta.diff.header.git",
|
|
197
197
|
"meta.diff.header.from-file",
|
|
198
|
-
"meta.diff.header.to-file"
|
|
198
|
+
"meta.diff.header.to-file",
|
|
199
199
|
],
|
|
200
200
|
"settings": {
|
|
201
|
-
"foreground": "#a2bffc"
|
|
202
|
-
}
|
|
201
|
+
"foreground": "#a2bffc",
|
|
202
|
+
},
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
"name": "Deleted",
|
|
206
206
|
"scope": "markup.deleted.diff",
|
|
207
207
|
"settings": {
|
|
208
|
-
"foreground": "#EF535090"
|
|
209
|
-
}
|
|
208
|
+
"foreground": "#EF535090",
|
|
209
|
+
},
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
"name": "Inserted",
|
|
213
213
|
"scope": "markup.inserted.diff",
|
|
214
214
|
"settings": {
|
|
215
|
-
"foreground": "#4876d6ff"
|
|
216
|
-
}
|
|
215
|
+
"foreground": "#4876d6ff",
|
|
216
|
+
},
|
|
217
217
|
},
|
|
218
218
|
{
|
|
219
219
|
"name": "Global settings",
|
|
220
220
|
"settings": {
|
|
221
221
|
"background": "#011627",
|
|
222
|
-
"foreground": "#403f53"
|
|
223
|
-
}
|
|
222
|
+
"foreground": "#403f53",
|
|
223
|
+
},
|
|
224
224
|
},
|
|
225
225
|
{
|
|
226
226
|
"name": "Comment",
|
|
227
227
|
"scope": "comment",
|
|
228
228
|
"settings": {
|
|
229
|
-
"foreground": "#989fb1"
|
|
230
|
-
}
|
|
229
|
+
"foreground": "#989fb1",
|
|
230
|
+
},
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
"name": "String",
|
|
234
234
|
"scope": "string",
|
|
235
235
|
"settings": {
|
|
236
|
-
"foreground": "#4876d6"
|
|
237
|
-
}
|
|
236
|
+
"foreground": "#4876d6",
|
|
237
|
+
},
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
"name": "String Quoted",
|
|
241
241
|
"scope": ["string.quoted", "variable.other.readwrite.js"],
|
|
242
242
|
"settings": {
|
|
243
|
-
"foreground": "#c96765"
|
|
244
|
-
}
|
|
243
|
+
"foreground": "#c96765",
|
|
244
|
+
},
|
|
245
245
|
},
|
|
246
246
|
{
|
|
247
247
|
"name": "Support Constant Math",
|
|
248
248
|
"scope": "support.constant.math",
|
|
249
249
|
"settings": {
|
|
250
|
-
"foreground": "#4876d6"
|
|
251
|
-
}
|
|
250
|
+
"foreground": "#4876d6",
|
|
251
|
+
},
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"name": "Number",
|
|
255
255
|
"scope": ["constant.numeric", "constant.character.numeric"],
|
|
256
256
|
"settings": {
|
|
257
257
|
"foreground": "#aa0982",
|
|
258
|
-
"fontStyle": ""
|
|
259
|
-
}
|
|
258
|
+
"fontStyle": "",
|
|
259
|
+
},
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
"name": "Built-in constant",
|
|
263
263
|
"scope": ["constant.language", "punctuation.definition.constant", "variable.other.constant"],
|
|
264
264
|
"settings": {
|
|
265
|
-
"foreground": "#4876d6"
|
|
266
|
-
}
|
|
265
|
+
"foreground": "#4876d6",
|
|
266
|
+
},
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
269
|
"name": "User-defined constant",
|
|
270
270
|
"scope": ["constant.character", "constant.other"],
|
|
271
271
|
"settings": {
|
|
272
|
-
"foreground": "#4876d6"
|
|
273
|
-
}
|
|
272
|
+
"foreground": "#4876d6",
|
|
273
|
+
},
|
|
274
274
|
},
|
|
275
275
|
{
|
|
276
276
|
"name": "Constant Character Escape",
|
|
277
277
|
"scope": "constant.character.escape",
|
|
278
278
|
"settings": {
|
|
279
|
-
"foreground": "#aa0982"
|
|
280
|
-
}
|
|
279
|
+
"foreground": "#aa0982",
|
|
280
|
+
},
|
|
281
281
|
},
|
|
282
282
|
{
|
|
283
283
|
"name": "RegExp String",
|
|
284
284
|
"scope": ["string.regexp", "string.regexp keyword.other"],
|
|
285
285
|
"settings": {
|
|
286
|
-
"foreground": "#5ca7e4"
|
|
287
|
-
}
|
|
286
|
+
"foreground": "#5ca7e4",
|
|
287
|
+
},
|
|
288
288
|
},
|
|
289
289
|
{
|
|
290
290
|
"name": "Comma in functions",
|
|
291
291
|
"scope": "meta.function punctuation.separator.comma",
|
|
292
292
|
"settings": {
|
|
293
|
-
"foreground": "#5f7e97"
|
|
294
|
-
}
|
|
293
|
+
"foreground": "#5f7e97",
|
|
294
|
+
},
|
|
295
295
|
},
|
|
296
296
|
{
|
|
297
297
|
"name": "Variable",
|
|
298
298
|
"scope": "variable",
|
|
299
299
|
"settings": {
|
|
300
|
-
"foreground": "#4876d6"
|
|
301
|
-
}
|
|
300
|
+
"foreground": "#4876d6",
|
|
301
|
+
},
|
|
302
302
|
},
|
|
303
303
|
{
|
|
304
304
|
"name": "Keyword",
|
|
305
305
|
"scope": ["punctuation.accessor", "keyword"],
|
|
306
306
|
"settings": {
|
|
307
|
-
"foreground": "#994cc3"
|
|
308
|
-
}
|
|
307
|
+
"foreground": "#994cc3",
|
|
308
|
+
},
|
|
309
309
|
},
|
|
310
310
|
{
|
|
311
311
|
"name": "Storage",
|
|
@@ -315,53 +315,53 @@
|
|
|
315
315
|
"meta.class meta.method.declaration meta.var.expr storage.type.js",
|
|
316
316
|
"storage.type.property.js",
|
|
317
317
|
"storage.type.property.ts",
|
|
318
|
-
"storage.type.property.tsx"
|
|
318
|
+
"storage.type.property.tsx",
|
|
319
319
|
],
|
|
320
320
|
"settings": {
|
|
321
|
-
"foreground": "#994cc3"
|
|
322
|
-
}
|
|
321
|
+
"foreground": "#994cc3",
|
|
322
|
+
},
|
|
323
323
|
},
|
|
324
324
|
{
|
|
325
325
|
"name": "Storage type",
|
|
326
326
|
"scope": "storage.type",
|
|
327
327
|
"settings": {
|
|
328
|
-
"foreground": "#994cc3"
|
|
329
|
-
}
|
|
328
|
+
"foreground": "#994cc3",
|
|
329
|
+
},
|
|
330
330
|
},
|
|
331
331
|
{
|
|
332
332
|
"name": "Storage type",
|
|
333
333
|
"scope": "storage.type.function.arrow.js",
|
|
334
334
|
"settings": {
|
|
335
|
-
"fontStyle": ""
|
|
336
|
-
}
|
|
335
|
+
"fontStyle": "",
|
|
336
|
+
},
|
|
337
337
|
},
|
|
338
338
|
{
|
|
339
339
|
"name": "Class name",
|
|
340
340
|
"scope": ["entity.name.class", "meta.class entity.name.type.class"],
|
|
341
341
|
"settings": {
|
|
342
|
-
"foreground": "#111111"
|
|
343
|
-
}
|
|
342
|
+
"foreground": "#111111",
|
|
343
|
+
},
|
|
344
344
|
},
|
|
345
345
|
{
|
|
346
346
|
"name": "Inherited class",
|
|
347
347
|
"scope": "entity.other.inherited-class",
|
|
348
348
|
"settings": {
|
|
349
|
-
"foreground": "#4876d6"
|
|
350
|
-
}
|
|
349
|
+
"foreground": "#4876d6",
|
|
350
|
+
},
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
"name": "Function name",
|
|
354
354
|
"scope": "entity.name.function",
|
|
355
355
|
"settings": {
|
|
356
|
-
"foreground": "#994cc3"
|
|
357
|
-
}
|
|
356
|
+
"foreground": "#994cc3",
|
|
357
|
+
},
|
|
358
358
|
},
|
|
359
359
|
{
|
|
360
360
|
"name": "Meta Tag",
|
|
361
361
|
"scope": ["punctuation.definition.tag", "meta.tag"],
|
|
362
362
|
"settings": {
|
|
363
|
-
"foreground": "#994cc3"
|
|
364
|
-
}
|
|
363
|
+
"foreground": "#994cc3",
|
|
364
|
+
},
|
|
365
365
|
},
|
|
366
366
|
{
|
|
367
367
|
"name": "HTML Tag names",
|
|
@@ -375,188 +375,188 @@
|
|
|
375
375
|
"entity.name.tag",
|
|
376
376
|
"meta.tag.js",
|
|
377
377
|
"meta.tag.tsx",
|
|
378
|
-
"meta.tag.html"
|
|
378
|
+
"meta.tag.html",
|
|
379
379
|
],
|
|
380
380
|
"settings": {
|
|
381
|
-
"foreground": "#994cc3"
|
|
382
|
-
}
|
|
381
|
+
"foreground": "#994cc3",
|
|
382
|
+
},
|
|
383
383
|
},
|
|
384
384
|
{
|
|
385
385
|
"name": "Tag attribute",
|
|
386
386
|
"scope": "entity.other.attribute-name",
|
|
387
387
|
"settings": {
|
|
388
|
-
"foreground": "#4876d6"
|
|
389
|
-
}
|
|
388
|
+
"foreground": "#4876d6",
|
|
389
|
+
},
|
|
390
390
|
},
|
|
391
391
|
{
|
|
392
392
|
"name": "Entity Name Tag Custom",
|
|
393
393
|
"scope": "entity.name.tag.custom",
|
|
394
394
|
"settings": {
|
|
395
|
-
"foreground": "#4876d6"
|
|
396
|
-
}
|
|
395
|
+
"foreground": "#4876d6",
|
|
396
|
+
},
|
|
397
397
|
},
|
|
398
398
|
{
|
|
399
399
|
"name": "Library (function & constant)",
|
|
400
400
|
"scope": ["support.function", "support.constant"],
|
|
401
401
|
"settings": {
|
|
402
|
-
"foreground": "#4876d6"
|
|
403
|
-
}
|
|
402
|
+
"foreground": "#4876d6",
|
|
403
|
+
},
|
|
404
404
|
},
|
|
405
405
|
{
|
|
406
406
|
"name": "Support Constant Property Value meta",
|
|
407
407
|
"scope": "support.constant.meta.property-value",
|
|
408
408
|
"settings": {
|
|
409
|
-
"foreground": "#0c969b"
|
|
410
|
-
}
|
|
409
|
+
"foreground": "#0c969b",
|
|
410
|
+
},
|
|
411
411
|
},
|
|
412
412
|
{
|
|
413
413
|
"name": "Library class/type",
|
|
414
414
|
"scope": ["support.type", "support.class"],
|
|
415
415
|
"settings": {
|
|
416
|
-
"foreground": "#4876d6"
|
|
417
|
-
}
|
|
416
|
+
"foreground": "#4876d6",
|
|
417
|
+
},
|
|
418
418
|
},
|
|
419
419
|
{
|
|
420
420
|
"name": "Support Variable DOM",
|
|
421
421
|
"scope": "support.variable.dom",
|
|
422
422
|
"settings": {
|
|
423
|
-
"foreground": "#4876d6"
|
|
424
|
-
}
|
|
423
|
+
"foreground": "#4876d6",
|
|
424
|
+
},
|
|
425
425
|
},
|
|
426
426
|
{
|
|
427
427
|
"name": "Invalid",
|
|
428
428
|
"scope": "invalid",
|
|
429
429
|
"settings": {
|
|
430
|
-
"foreground": "#ff2c83"
|
|
431
|
-
}
|
|
430
|
+
"foreground": "#ff2c83",
|
|
431
|
+
},
|
|
432
432
|
},
|
|
433
433
|
{
|
|
434
434
|
"name": "Invalid deprecated",
|
|
435
435
|
"scope": "invalid.deprecated",
|
|
436
436
|
"settings": {
|
|
437
|
-
"foreground": "#d3423e"
|
|
438
|
-
}
|
|
437
|
+
"foreground": "#d3423e",
|
|
438
|
+
},
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
441
|
"name": "Keyword Operator",
|
|
442
442
|
"scope": "keyword.operator",
|
|
443
443
|
"settings": {
|
|
444
444
|
"foreground": "#0c969b",
|
|
445
|
-
"fontStyle": ""
|
|
446
|
-
}
|
|
445
|
+
"fontStyle": "",
|
|
446
|
+
},
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
449
|
"name": "Keyword Operator Relational",
|
|
450
450
|
"scope": "keyword.operator.relational",
|
|
451
451
|
"settings": {
|
|
452
|
-
"foreground": "#994cc3"
|
|
453
|
-
}
|
|
452
|
+
"foreground": "#994cc3",
|
|
453
|
+
},
|
|
454
454
|
},
|
|
455
455
|
{
|
|
456
456
|
"name": "Keyword Operator Assignment",
|
|
457
457
|
"scope": "keyword.operator.assignment",
|
|
458
458
|
"settings": {
|
|
459
|
-
"foreground": "#994cc3"
|
|
460
|
-
}
|
|
459
|
+
"foreground": "#994cc3",
|
|
460
|
+
},
|
|
461
461
|
},
|
|
462
462
|
{
|
|
463
463
|
"name": "Keyword Operator Arithmetic",
|
|
464
464
|
"scope": "keyword.operator.arithmetic",
|
|
465
465
|
"settings": {
|
|
466
|
-
"foreground": "#994cc3"
|
|
467
|
-
}
|
|
466
|
+
"foreground": "#994cc3",
|
|
467
|
+
},
|
|
468
468
|
},
|
|
469
469
|
{
|
|
470
470
|
"name": "Keyword Operator Bitwise",
|
|
471
471
|
"scope": "keyword.operator.bitwise",
|
|
472
472
|
"settings": {
|
|
473
|
-
"foreground": "#994cc3"
|
|
474
|
-
}
|
|
473
|
+
"foreground": "#994cc3",
|
|
474
|
+
},
|
|
475
475
|
},
|
|
476
476
|
{
|
|
477
477
|
"name": "Keyword Operator Increment",
|
|
478
478
|
"scope": "keyword.operator.increment",
|
|
479
479
|
"settings": {
|
|
480
|
-
"foreground": "#994cc3"
|
|
481
|
-
}
|
|
480
|
+
"foreground": "#994cc3",
|
|
481
|
+
},
|
|
482
482
|
},
|
|
483
483
|
{
|
|
484
484
|
"name": "Keyword Operator Ternary",
|
|
485
485
|
"scope": "keyword.operator.ternary",
|
|
486
486
|
"settings": {
|
|
487
|
-
"foreground": "#994cc3"
|
|
488
|
-
}
|
|
487
|
+
"foreground": "#994cc3",
|
|
488
|
+
},
|
|
489
489
|
},
|
|
490
490
|
{
|
|
491
491
|
"name": "Double-Slashed Comment",
|
|
492
492
|
"scope": "comment.line.double-slash",
|
|
493
493
|
"settings": {
|
|
494
|
-
"foreground": "#939dbb"
|
|
495
|
-
}
|
|
494
|
+
"foreground": "#939dbb",
|
|
495
|
+
},
|
|
496
496
|
},
|
|
497
497
|
{
|
|
498
498
|
"name": "Object",
|
|
499
499
|
"scope": "object",
|
|
500
500
|
"settings": {
|
|
501
|
-
"foreground": "#cdebf7"
|
|
502
|
-
}
|
|
501
|
+
"foreground": "#cdebf7",
|
|
502
|
+
},
|
|
503
503
|
},
|
|
504
504
|
{
|
|
505
505
|
"name": "Null",
|
|
506
506
|
"scope": "constant.language.null",
|
|
507
507
|
"settings": {
|
|
508
|
-
"foreground": "#bc5454"
|
|
509
|
-
}
|
|
508
|
+
"foreground": "#bc5454",
|
|
509
|
+
},
|
|
510
510
|
},
|
|
511
511
|
{
|
|
512
512
|
"name": "Meta Brace",
|
|
513
513
|
"scope": "meta.brace",
|
|
514
514
|
"settings": {
|
|
515
|
-
"foreground": "#403f53"
|
|
516
|
-
}
|
|
515
|
+
"foreground": "#403f53",
|
|
516
|
+
},
|
|
517
517
|
},
|
|
518
518
|
{
|
|
519
519
|
"name": "Meta Delimiter Period",
|
|
520
520
|
"scope": "meta.delimiter.period",
|
|
521
521
|
"settings": {
|
|
522
|
-
"foreground": "#994cc3"
|
|
523
|
-
}
|
|
522
|
+
"foreground": "#994cc3",
|
|
523
|
+
},
|
|
524
524
|
},
|
|
525
525
|
{
|
|
526
526
|
"name": "Punctuation Definition String",
|
|
527
527
|
"scope": "punctuation.definition.string",
|
|
528
528
|
"settings": {
|
|
529
|
-
"foreground": "#111111"
|
|
530
|
-
}
|
|
529
|
+
"foreground": "#111111",
|
|
530
|
+
},
|
|
531
531
|
},
|
|
532
532
|
{
|
|
533
533
|
"name": "Punctuation Definition String Markdown",
|
|
534
534
|
"scope": "punctuation.definition.string.begin.markdown",
|
|
535
535
|
"settings": {
|
|
536
|
-
"foreground": "#bc5454"
|
|
537
|
-
}
|
|
536
|
+
"foreground": "#bc5454",
|
|
537
|
+
},
|
|
538
538
|
},
|
|
539
539
|
{
|
|
540
540
|
"name": "Boolean",
|
|
541
541
|
"scope": "constant.language.boolean",
|
|
542
542
|
"settings": {
|
|
543
|
-
"foreground": "#bc5454"
|
|
544
|
-
}
|
|
543
|
+
"foreground": "#bc5454",
|
|
544
|
+
},
|
|
545
545
|
},
|
|
546
546
|
{
|
|
547
547
|
"name": "Object Comma",
|
|
548
548
|
"scope": "object.comma",
|
|
549
549
|
"settings": {
|
|
550
|
-
"foreground": "#ffffff"
|
|
551
|
-
}
|
|
550
|
+
"foreground": "#ffffff",
|
|
551
|
+
},
|
|
552
552
|
},
|
|
553
553
|
{
|
|
554
554
|
"name": "Variable Parameter Function",
|
|
555
555
|
"scope": "variable.parameter.function",
|
|
556
556
|
"settings": {
|
|
557
557
|
"foreground": "#0c969b",
|
|
558
|
-
"fontStyle": ""
|
|
559
|
-
}
|
|
558
|
+
"fontStyle": "",
|
|
559
|
+
},
|
|
560
560
|
},
|
|
561
561
|
{
|
|
562
562
|
"name": "Support Type Property Name & entity name tags",
|
|
@@ -564,90 +564,90 @@
|
|
|
564
564
|
"support.type.vendor.property-name",
|
|
565
565
|
"support.constant.vendor.property-value",
|
|
566
566
|
"support.type.property-name",
|
|
567
|
-
"meta.property-list entity.name.tag"
|
|
567
|
+
"meta.property-list entity.name.tag",
|
|
568
568
|
],
|
|
569
569
|
"settings": {
|
|
570
570
|
"foreground": "#0c969b",
|
|
571
|
-
"fontStyle": ""
|
|
572
|
-
}
|
|
571
|
+
"fontStyle": "",
|
|
572
|
+
},
|
|
573
573
|
},
|
|
574
574
|
{
|
|
575
575
|
"name": "Entity Name tag reference in stylesheets",
|
|
576
576
|
"scope": "meta.property-list entity.name.tag.reference",
|
|
577
577
|
"settings": {
|
|
578
|
-
"foreground": "#57eaf1"
|
|
579
|
-
}
|
|
578
|
+
"foreground": "#57eaf1",
|
|
579
|
+
},
|
|
580
580
|
},
|
|
581
581
|
{
|
|
582
582
|
"name": "Constant Other Color RGB Value Punctuation Definition Constant",
|
|
583
583
|
"scope": "constant.other.color.rgb-value punctuation.definition.constant",
|
|
584
584
|
"settings": {
|
|
585
|
-
"foreground": "#aa0982"
|
|
586
|
-
}
|
|
585
|
+
"foreground": "#aa0982",
|
|
586
|
+
},
|
|
587
587
|
},
|
|
588
588
|
{
|
|
589
589
|
"name": "Constant Other Color",
|
|
590
590
|
"scope": "constant.other.color",
|
|
591
591
|
"settings": {
|
|
592
|
-
"foreground": "#aa0982"
|
|
593
|
-
}
|
|
592
|
+
"foreground": "#aa0982",
|
|
593
|
+
},
|
|
594
594
|
},
|
|
595
595
|
{
|
|
596
596
|
"name": "Keyword Other Unit",
|
|
597
597
|
"scope": "keyword.other.unit",
|
|
598
598
|
"settings": {
|
|
599
|
-
"foreground": "#aa0982"
|
|
600
|
-
}
|
|
599
|
+
"foreground": "#aa0982",
|
|
600
|
+
},
|
|
601
601
|
},
|
|
602
602
|
{
|
|
603
603
|
"name": "Meta Selector",
|
|
604
604
|
"scope": "meta.selector",
|
|
605
605
|
"settings": {
|
|
606
|
-
"foreground": "#994cc3"
|
|
607
|
-
}
|
|
606
|
+
"foreground": "#994cc3",
|
|
607
|
+
},
|
|
608
608
|
},
|
|
609
609
|
{
|
|
610
610
|
"name": "Entity Other Attribute Name Id",
|
|
611
611
|
"scope": "entity.other.attribute-name.id",
|
|
612
612
|
"settings": {
|
|
613
|
-
"foreground": "#aa0982"
|
|
614
|
-
}
|
|
613
|
+
"foreground": "#aa0982",
|
|
614
|
+
},
|
|
615
615
|
},
|
|
616
616
|
{
|
|
617
617
|
"name": "Meta Property Name",
|
|
618
618
|
"scope": "meta.property-name",
|
|
619
619
|
"settings": {
|
|
620
|
-
"foreground": "#0c969b"
|
|
621
|
-
}
|
|
620
|
+
"foreground": "#0c969b",
|
|
621
|
+
},
|
|
622
622
|
},
|
|
623
623
|
{
|
|
624
624
|
"name": "Doctypes",
|
|
625
625
|
"scope": ["entity.name.tag.doctype", "meta.tag.sgml.doctype"],
|
|
626
626
|
"settings": {
|
|
627
|
-
"foreground": "#994cc3"
|
|
628
|
-
}
|
|
627
|
+
"foreground": "#994cc3",
|
|
628
|
+
},
|
|
629
629
|
},
|
|
630
630
|
{
|
|
631
631
|
"name": "Punctuation Definition Parameters",
|
|
632
632
|
"scope": "punctuation.definition.parameters",
|
|
633
633
|
"settings": {
|
|
634
|
-
"foreground": "#111111"
|
|
635
|
-
}
|
|
634
|
+
"foreground": "#111111",
|
|
635
|
+
},
|
|
636
636
|
},
|
|
637
637
|
{
|
|
638
638
|
"name": "Keyword Control Operator",
|
|
639
639
|
"scope": "keyword.control.operator",
|
|
640
640
|
"settings": {
|
|
641
|
-
"foreground": "#0c969b"
|
|
642
|
-
}
|
|
641
|
+
"foreground": "#0c969b",
|
|
642
|
+
},
|
|
643
643
|
},
|
|
644
644
|
{
|
|
645
645
|
"name": "Keyword Operator Logical",
|
|
646
646
|
"scope": "keyword.operator.logical",
|
|
647
647
|
"settings": {
|
|
648
648
|
"foreground": "#994cc3",
|
|
649
|
-
"fontStyle": ""
|
|
650
|
-
}
|
|
649
|
+
"fontStyle": "",
|
|
650
|
+
},
|
|
651
651
|
},
|
|
652
652
|
{
|
|
653
653
|
"name": "Variable Instances",
|
|
@@ -656,32 +656,32 @@
|
|
|
656
656
|
"variable.other.instance",
|
|
657
657
|
"variable.readwrite.instance",
|
|
658
658
|
"variable.other.readwrite.instance",
|
|
659
|
-
"variable.other.property"
|
|
659
|
+
"variable.other.property",
|
|
660
660
|
],
|
|
661
661
|
"settings": {
|
|
662
|
-
"foreground": "#0c969b"
|
|
663
|
-
}
|
|
662
|
+
"foreground": "#0c969b",
|
|
663
|
+
},
|
|
664
664
|
},
|
|
665
665
|
{
|
|
666
666
|
"name": "Variable Property Other object property",
|
|
667
667
|
"scope": ["variable.other.object.property"],
|
|
668
668
|
"settings": {
|
|
669
|
-
"foreground": "#111111"
|
|
670
|
-
}
|
|
669
|
+
"foreground": "#111111",
|
|
670
|
+
},
|
|
671
671
|
},
|
|
672
672
|
{
|
|
673
673
|
"name": "Variable Property Other object",
|
|
674
674
|
"scope": ["variable.other.object.js"],
|
|
675
675
|
"settings": {
|
|
676
|
-
"fontStyle": ""
|
|
677
|
-
}
|
|
676
|
+
"fontStyle": "",
|
|
677
|
+
},
|
|
678
678
|
},
|
|
679
679
|
{
|
|
680
680
|
"name": "Entity Name Function",
|
|
681
681
|
"scope": ["entity.name.function"],
|
|
682
682
|
"settings": {
|
|
683
|
-
"foreground": "#4876d6"
|
|
684
|
-
}
|
|
683
|
+
"foreground": "#4876d6",
|
|
684
|
+
},
|
|
685
685
|
},
|
|
686
686
|
{
|
|
687
687
|
"name": "Keyword Operator Comparison, imports, returns and Keyword Operator Ruby",
|
|
@@ -704,11 +704,11 @@
|
|
|
704
704
|
"keyword.control.from.tsx",
|
|
705
705
|
"keyword.operator.instanceof.js",
|
|
706
706
|
"keyword.operator.expression.instanceof.ts",
|
|
707
|
-
"keyword.operator.expression.instanceof.tsx"
|
|
707
|
+
"keyword.operator.expression.instanceof.tsx",
|
|
708
708
|
],
|
|
709
709
|
"settings": {
|
|
710
|
-
"foreground": "#994cc3"
|
|
711
|
-
}
|
|
710
|
+
"foreground": "#994cc3",
|
|
711
|
+
},
|
|
712
712
|
},
|
|
713
713
|
{
|
|
714
714
|
"name": "Keyword Control Conditional",
|
|
@@ -716,12 +716,12 @@
|
|
|
716
716
|
"keyword.control.conditional.js",
|
|
717
717
|
"keyword.control.conditional.ts",
|
|
718
718
|
"keyword.control.switch.js",
|
|
719
|
-
"keyword.control.switch.ts"
|
|
719
|
+
"keyword.control.switch.ts",
|
|
720
720
|
],
|
|
721
721
|
"settings": {
|
|
722
722
|
"foreground": "#994cc3",
|
|
723
|
-
"fontStyle": ""
|
|
724
|
-
}
|
|
723
|
+
"fontStyle": "",
|
|
724
|
+
},
|
|
725
725
|
},
|
|
726
726
|
{
|
|
727
727
|
"name": "Support Constant, `new` keyword, Special Method Keyword, `debugger`, other keywords",
|
|
@@ -730,81 +730,81 @@
|
|
|
730
730
|
"keyword.other.special-method",
|
|
731
731
|
"keyword.other.new",
|
|
732
732
|
"keyword.other.debugger",
|
|
733
|
-
"keyword.control"
|
|
733
|
+
"keyword.control",
|
|
734
734
|
],
|
|
735
735
|
"settings": {
|
|
736
|
-
"foreground": "#0c969b"
|
|
737
|
-
}
|
|
736
|
+
"foreground": "#0c969b",
|
|
737
|
+
},
|
|
738
738
|
},
|
|
739
739
|
{
|
|
740
740
|
"name": "Support Function",
|
|
741
741
|
"scope": "support.function",
|
|
742
742
|
"settings": {
|
|
743
|
-
"foreground": "#4876d6"
|
|
744
|
-
}
|
|
743
|
+
"foreground": "#4876d6",
|
|
744
|
+
},
|
|
745
745
|
},
|
|
746
746
|
{
|
|
747
747
|
"name": "Invalid Broken",
|
|
748
748
|
"scope": "invalid.broken",
|
|
749
749
|
"settings": {
|
|
750
|
-
"foreground": "#aa0982"
|
|
751
|
-
}
|
|
750
|
+
"foreground": "#aa0982",
|
|
751
|
+
},
|
|
752
752
|
},
|
|
753
753
|
{
|
|
754
754
|
"name": "Invalid Unimplemented",
|
|
755
755
|
"scope": "invalid.unimplemented",
|
|
756
756
|
"settings": {
|
|
757
|
-
"foreground": "#8BD649"
|
|
758
|
-
}
|
|
757
|
+
"foreground": "#8BD649",
|
|
758
|
+
},
|
|
759
759
|
},
|
|
760
760
|
{
|
|
761
761
|
"name": "Invalid Illegal",
|
|
762
762
|
"scope": "invalid.illegal",
|
|
763
763
|
"settings": {
|
|
764
|
-
"foreground": "#c96765"
|
|
765
|
-
}
|
|
764
|
+
"foreground": "#c96765",
|
|
765
|
+
},
|
|
766
766
|
},
|
|
767
767
|
{
|
|
768
768
|
"name": "Language Variable",
|
|
769
769
|
"scope": "variable.language",
|
|
770
770
|
"settings": {
|
|
771
|
-
"foreground": "#0c969b"
|
|
772
|
-
}
|
|
771
|
+
"foreground": "#0c969b",
|
|
772
|
+
},
|
|
773
773
|
},
|
|
774
774
|
{
|
|
775
775
|
"name": "Support Variable Property",
|
|
776
776
|
"scope": "support.variable.property",
|
|
777
777
|
"settings": {
|
|
778
|
-
"foreground": "#0c969b"
|
|
779
|
-
}
|
|
778
|
+
"foreground": "#0c969b",
|
|
779
|
+
},
|
|
780
780
|
},
|
|
781
781
|
{
|
|
782
782
|
"name": "Variable Function",
|
|
783
783
|
"scope": "variable.function",
|
|
784
784
|
"settings": {
|
|
785
|
-
"foreground": "#4876d6"
|
|
786
|
-
}
|
|
785
|
+
"foreground": "#4876d6",
|
|
786
|
+
},
|
|
787
787
|
},
|
|
788
788
|
{
|
|
789
789
|
"name": "Variable Interpolation",
|
|
790
790
|
"scope": "variable.interpolation",
|
|
791
791
|
"settings": {
|
|
792
|
-
"foreground": "#ec5f67"
|
|
793
|
-
}
|
|
792
|
+
"foreground": "#ec5f67",
|
|
793
|
+
},
|
|
794
794
|
},
|
|
795
795
|
{
|
|
796
796
|
"name": "Meta Function Call",
|
|
797
797
|
"scope": "meta.function-call",
|
|
798
798
|
"settings": {
|
|
799
|
-
"foreground": "#4876d6"
|
|
800
|
-
}
|
|
799
|
+
"foreground": "#4876d6",
|
|
800
|
+
},
|
|
801
801
|
},
|
|
802
802
|
{
|
|
803
803
|
"name": "Punctuation Section Embedded",
|
|
804
804
|
"scope": "punctuation.section.embedded",
|
|
805
805
|
"settings": {
|
|
806
|
-
"foreground": "#d3423e"
|
|
807
|
-
}
|
|
806
|
+
"foreground": "#d3423e",
|
|
807
|
+
},
|
|
808
808
|
},
|
|
809
809
|
{
|
|
810
810
|
"name": "Punctuation Tweaks",
|
|
@@ -813,11 +813,11 @@
|
|
|
813
813
|
"punctuation.definition.arguments",
|
|
814
814
|
"punctuation.definition.array",
|
|
815
815
|
"punctuation.section.array",
|
|
816
|
-
"meta.array"
|
|
816
|
+
"meta.array",
|
|
817
817
|
],
|
|
818
818
|
"settings": {
|
|
819
|
-
"foreground": "#403f53"
|
|
820
|
-
}
|
|
819
|
+
"foreground": "#403f53",
|
|
820
|
+
},
|
|
821
821
|
},
|
|
822
822
|
{
|
|
823
823
|
"name": "More Punctuation Tweaks",
|
|
@@ -825,97 +825,97 @@
|
|
|
825
825
|
"punctuation.definition.list.begin",
|
|
826
826
|
"punctuation.definition.list.end",
|
|
827
827
|
"punctuation.separator.arguments",
|
|
828
|
-
"punctuation.definition.list"
|
|
828
|
+
"punctuation.definition.list",
|
|
829
829
|
],
|
|
830
830
|
"settings": {
|
|
831
|
-
"foreground": "#111111"
|
|
832
|
-
}
|
|
831
|
+
"foreground": "#111111",
|
|
832
|
+
},
|
|
833
833
|
},
|
|
834
834
|
{
|
|
835
835
|
"name": "Template Strings",
|
|
836
836
|
"scope": "string.template meta.template.expression",
|
|
837
837
|
"settings": {
|
|
838
|
-
"foreground": "#d3423e"
|
|
839
|
-
}
|
|
838
|
+
"foreground": "#d3423e",
|
|
839
|
+
},
|
|
840
840
|
},
|
|
841
841
|
{
|
|
842
842
|
"name": "Backtics(``) in Template Strings",
|
|
843
843
|
"scope": "string.template punctuation.definition.string",
|
|
844
844
|
"settings": {
|
|
845
|
-
"foreground": "#403f53"
|
|
846
|
-
}
|
|
845
|
+
"foreground": "#403f53",
|
|
846
|
+
},
|
|
847
847
|
},
|
|
848
848
|
{
|
|
849
849
|
"name": "Italics",
|
|
850
850
|
"scope": "italic",
|
|
851
851
|
"settings": {
|
|
852
852
|
"foreground": "#994cc3",
|
|
853
|
-
"fontStyle": "italic"
|
|
854
|
-
}
|
|
853
|
+
"fontStyle": "italic",
|
|
854
|
+
},
|
|
855
855
|
},
|
|
856
856
|
{
|
|
857
857
|
"name": "Bold",
|
|
858
858
|
"scope": "bold",
|
|
859
859
|
"settings": {
|
|
860
860
|
"foreground": "#4876d6",
|
|
861
|
-
"fontStyle": "bold"
|
|
862
|
-
}
|
|
861
|
+
"fontStyle": "bold",
|
|
862
|
+
},
|
|
863
863
|
},
|
|
864
864
|
{
|
|
865
865
|
"name": "Quote",
|
|
866
866
|
"scope": "quote",
|
|
867
867
|
"settings": {
|
|
868
|
-
"foreground": "#697098"
|
|
869
|
-
}
|
|
868
|
+
"foreground": "#697098",
|
|
869
|
+
},
|
|
870
870
|
},
|
|
871
871
|
{
|
|
872
872
|
"name": "Raw Code",
|
|
873
873
|
"scope": "raw",
|
|
874
874
|
"settings": {
|
|
875
|
-
"foreground": "#0c969b"
|
|
876
|
-
}
|
|
875
|
+
"foreground": "#0c969b",
|
|
876
|
+
},
|
|
877
877
|
},
|
|
878
878
|
{
|
|
879
879
|
"name": "CoffeScript Variable Assignment",
|
|
880
880
|
"scope": "variable.assignment.coffee",
|
|
881
881
|
"settings": {
|
|
882
|
-
"foreground": "#31e1eb"
|
|
883
|
-
}
|
|
882
|
+
"foreground": "#31e1eb",
|
|
883
|
+
},
|
|
884
884
|
},
|
|
885
885
|
{
|
|
886
886
|
"name": "CoffeScript Parameter Function",
|
|
887
887
|
"scope": "variable.parameter.function.coffee",
|
|
888
888
|
"settings": {
|
|
889
|
-
"foreground": "#403f53"
|
|
890
|
-
}
|
|
889
|
+
"foreground": "#403f53",
|
|
890
|
+
},
|
|
891
891
|
},
|
|
892
892
|
{
|
|
893
893
|
"name": "CoffeeScript Assignments",
|
|
894
894
|
"scope": "variable.assignment.coffee",
|
|
895
895
|
"settings": {
|
|
896
|
-
"foreground": "#0c969b"
|
|
897
|
-
}
|
|
896
|
+
"foreground": "#0c969b",
|
|
897
|
+
},
|
|
898
898
|
},
|
|
899
899
|
{
|
|
900
900
|
"name": "C# Readwrite Variables",
|
|
901
901
|
"scope": "variable.other.readwrite.cs",
|
|
902
902
|
"settings": {
|
|
903
|
-
"foreground": "#403f53"
|
|
904
|
-
}
|
|
903
|
+
"foreground": "#403f53",
|
|
904
|
+
},
|
|
905
905
|
},
|
|
906
906
|
{
|
|
907
907
|
"name": "C# Classes & Storage types",
|
|
908
908
|
"scope": ["entity.name.type.class.cs", "storage.type.cs"],
|
|
909
909
|
"settings": {
|
|
910
|
-
"foreground": "#4876d6"
|
|
911
|
-
}
|
|
910
|
+
"foreground": "#4876d6",
|
|
911
|
+
},
|
|
912
912
|
},
|
|
913
913
|
{
|
|
914
914
|
"name": "C# Namespaces",
|
|
915
915
|
"scope": "entity.name.type.namespace.cs",
|
|
916
916
|
"settings": {
|
|
917
|
-
"foreground": "#0c969b"
|
|
918
|
-
}
|
|
917
|
+
"foreground": "#0c969b",
|
|
918
|
+
},
|
|
919
919
|
},
|
|
920
920
|
{
|
|
921
921
|
"name": "Tag names in Stylesheets",
|
|
@@ -923,12 +923,12 @@
|
|
|
923
923
|
"entity.name.tag.css",
|
|
924
924
|
"entity.name.tag.less",
|
|
925
925
|
"entity.name.tag.custom.css",
|
|
926
|
-
"support.constant.property-value.css"
|
|
926
|
+
"support.constant.property-value.css",
|
|
927
927
|
],
|
|
928
928
|
"settings": {
|
|
929
929
|
"foreground": "#c96765",
|
|
930
|
-
"fontStyle": ""
|
|
931
|
-
}
|
|
930
|
+
"fontStyle": "",
|
|
931
|
+
},
|
|
932
932
|
},
|
|
933
933
|
{
|
|
934
934
|
"name": "Wildcard(*) selector in Stylesheets",
|
|
@@ -936,93 +936,93 @@
|
|
|
936
936
|
"entity.name.tag.wildcard.css",
|
|
937
937
|
"entity.name.tag.wildcard.less",
|
|
938
938
|
"entity.name.tag.wildcard.scss",
|
|
939
|
-
"entity.name.tag.wildcard.sass"
|
|
939
|
+
"entity.name.tag.wildcard.sass",
|
|
940
940
|
],
|
|
941
941
|
"settings": {
|
|
942
|
-
"foreground": "#0c969b"
|
|
943
|
-
}
|
|
942
|
+
"foreground": "#0c969b",
|
|
943
|
+
},
|
|
944
944
|
},
|
|
945
945
|
{
|
|
946
946
|
"name": "CSS Keyword Other Unit",
|
|
947
947
|
"scope": "keyword.other.unit.css",
|
|
948
948
|
"settings": {
|
|
949
|
-
"foreground": "#4876d6"
|
|
950
|
-
}
|
|
949
|
+
"foreground": "#4876d6",
|
|
950
|
+
},
|
|
951
951
|
},
|
|
952
952
|
{
|
|
953
953
|
"name": "Attribute Name for CSS",
|
|
954
954
|
"scope": [
|
|
955
955
|
"meta.attribute-selector.css entity.other.attribute-name.attribute",
|
|
956
|
-
"variable.other.readwrite.js"
|
|
956
|
+
"variable.other.readwrite.js",
|
|
957
957
|
],
|
|
958
958
|
"settings": {
|
|
959
|
-
"foreground": "#aa0982"
|
|
960
|
-
}
|
|
959
|
+
"foreground": "#aa0982",
|
|
960
|
+
},
|
|
961
961
|
},
|
|
962
962
|
{
|
|
963
963
|
"name": "Elixir Classes",
|
|
964
964
|
"scope": [
|
|
965
965
|
"source.elixir support.type.elixir",
|
|
966
|
-
"source.elixir meta.module.elixir entity.name.class.elixir"
|
|
966
|
+
"source.elixir meta.module.elixir entity.name.class.elixir",
|
|
967
967
|
],
|
|
968
968
|
"settings": {
|
|
969
|
-
"foreground": "#4876d6"
|
|
970
|
-
}
|
|
969
|
+
"foreground": "#4876d6",
|
|
970
|
+
},
|
|
971
971
|
},
|
|
972
972
|
{
|
|
973
973
|
"name": "Elixir Functions",
|
|
974
974
|
"scope": "source.elixir entity.name.function",
|
|
975
975
|
"settings": {
|
|
976
|
-
"foreground": "#4876d6"
|
|
977
|
-
}
|
|
976
|
+
"foreground": "#4876d6",
|
|
977
|
+
},
|
|
978
978
|
},
|
|
979
979
|
{
|
|
980
980
|
"name": "Elixir Constants",
|
|
981
981
|
"scope": [
|
|
982
982
|
"source.elixir constant.other.symbol.elixir",
|
|
983
|
-
"source.elixir constant.other.keywords.elixir"
|
|
983
|
+
"source.elixir constant.other.keywords.elixir",
|
|
984
984
|
],
|
|
985
985
|
"settings": {
|
|
986
|
-
"foreground": "#4876d6"
|
|
987
|
-
}
|
|
986
|
+
"foreground": "#4876d6",
|
|
987
|
+
},
|
|
988
988
|
},
|
|
989
989
|
{
|
|
990
990
|
"name": "Elixir String Punctuations",
|
|
991
991
|
"scope": "source.elixir punctuation.definition.string",
|
|
992
992
|
"settings": {
|
|
993
|
-
"foreground": "#4876d6"
|
|
994
|
-
}
|
|
993
|
+
"foreground": "#4876d6",
|
|
994
|
+
},
|
|
995
995
|
},
|
|
996
996
|
{
|
|
997
997
|
"name": "Elixir",
|
|
998
998
|
"scope": [
|
|
999
999
|
"source.elixir variable.other.readwrite.module.elixir",
|
|
1000
|
-
"source.elixir variable.other.readwrite.module.elixir punctuation.definition.variable.elixir"
|
|
1000
|
+
"source.elixir variable.other.readwrite.module.elixir punctuation.definition.variable.elixir",
|
|
1001
1001
|
],
|
|
1002
1002
|
"settings": {
|
|
1003
|
-
"foreground": "#4876d6"
|
|
1004
|
-
}
|
|
1003
|
+
"foreground": "#4876d6",
|
|
1004
|
+
},
|
|
1005
1005
|
},
|
|
1006
1006
|
{
|
|
1007
1007
|
"name": "Elixir Binary Punctuations",
|
|
1008
1008
|
"scope": "source.elixir .punctuation.binary.elixir",
|
|
1009
1009
|
"settings": {
|
|
1010
|
-
"foreground": "#994cc3"
|
|
1011
|
-
}
|
|
1010
|
+
"foreground": "#994cc3",
|
|
1011
|
+
},
|
|
1012
1012
|
},
|
|
1013
1013
|
{
|
|
1014
1014
|
"name": "Closure Constant Keyword",
|
|
1015
1015
|
"scope": "constant.keyword.clojure",
|
|
1016
1016
|
"settings": {
|
|
1017
|
-
"foreground": "#0c969b"
|
|
1018
|
-
}
|
|
1017
|
+
"foreground": "#0c969b",
|
|
1018
|
+
},
|
|
1019
1019
|
},
|
|
1020
1020
|
{
|
|
1021
1021
|
"name": "Go Function Calls",
|
|
1022
1022
|
"scope": "source.go meta.function-call.go",
|
|
1023
1023
|
"settings": {
|
|
1024
|
-
"foreground": "#0c969b"
|
|
1025
|
-
}
|
|
1024
|
+
"foreground": "#0c969b",
|
|
1025
|
+
},
|
|
1026
1026
|
},
|
|
1027
1027
|
{
|
|
1028
1028
|
"name": "Go Keywords",
|
|
@@ -1037,130 +1037,130 @@
|
|
|
1037
1037
|
"source.go keyword.var.go",
|
|
1038
1038
|
"source.go keyword.map.go",
|
|
1039
1039
|
"source.go keyword.channel.go",
|
|
1040
|
-
"source.go keyword.control.go"
|
|
1040
|
+
"source.go keyword.control.go",
|
|
1041
1041
|
],
|
|
1042
1042
|
"settings": {
|
|
1043
|
-
"foreground": "#994cc3"
|
|
1044
|
-
}
|
|
1043
|
+
"foreground": "#994cc3",
|
|
1044
|
+
},
|
|
1045
1045
|
},
|
|
1046
1046
|
{
|
|
1047
1047
|
"name": "Go Constants e.g. nil, string format (%s, %d, etc.)",
|
|
1048
1048
|
"scope": ["source.go constant.language.go", "source.go constant.other.placeholder.go"],
|
|
1049
1049
|
"settings": {
|
|
1050
|
-
"foreground": "#bc5454"
|
|
1051
|
-
}
|
|
1050
|
+
"foreground": "#bc5454",
|
|
1051
|
+
},
|
|
1052
1052
|
},
|
|
1053
1053
|
{
|
|
1054
1054
|
"name": "C++ Functions",
|
|
1055
1055
|
"scope": ["entity.name.function.preprocessor.cpp", "entity.scope.name.cpp"],
|
|
1056
1056
|
"settings": {
|
|
1057
|
-
"foreground": "#0c969bff"
|
|
1058
|
-
}
|
|
1057
|
+
"foreground": "#0c969bff",
|
|
1058
|
+
},
|
|
1059
1059
|
},
|
|
1060
1060
|
{
|
|
1061
1061
|
"name": "C++ Meta Namespace",
|
|
1062
1062
|
"scope": ["meta.namespace-block.cpp"],
|
|
1063
1063
|
"settings": {
|
|
1064
|
-
"foreground": "#111111"
|
|
1065
|
-
}
|
|
1064
|
+
"foreground": "#111111",
|
|
1065
|
+
},
|
|
1066
1066
|
},
|
|
1067
1067
|
{
|
|
1068
1068
|
"name": "C++ Language Primitive Storage",
|
|
1069
1069
|
"scope": ["storage.type.language.primitive.cpp"],
|
|
1070
1070
|
"settings": {
|
|
1071
|
-
"foreground": "#bc5454"
|
|
1072
|
-
}
|
|
1071
|
+
"foreground": "#bc5454",
|
|
1072
|
+
},
|
|
1073
1073
|
},
|
|
1074
1074
|
{
|
|
1075
1075
|
"name": "C++ Preprocessor Macro",
|
|
1076
1076
|
"scope": ["meta.preprocessor.macro.cpp"],
|
|
1077
1077
|
"settings": {
|
|
1078
|
-
"foreground": "#403f53"
|
|
1079
|
-
}
|
|
1078
|
+
"foreground": "#403f53",
|
|
1079
|
+
},
|
|
1080
1080
|
},
|
|
1081
1081
|
{
|
|
1082
1082
|
"name": "C++ Variable Parameter",
|
|
1083
1083
|
"scope": ["variable.parameter"],
|
|
1084
1084
|
"settings": {
|
|
1085
|
-
"foreground": "#111111"
|
|
1086
|
-
}
|
|
1085
|
+
"foreground": "#111111",
|
|
1086
|
+
},
|
|
1087
1087
|
},
|
|
1088
1088
|
{
|
|
1089
1089
|
"name": "Powershell Variables",
|
|
1090
1090
|
"scope": ["variable.other.readwrite.powershell"],
|
|
1091
1091
|
"settings": {
|
|
1092
|
-
"foreground": "#4876d6"
|
|
1093
|
-
}
|
|
1092
|
+
"foreground": "#4876d6",
|
|
1093
|
+
},
|
|
1094
1094
|
},
|
|
1095
1095
|
{
|
|
1096
1096
|
"name": "Powershell Function",
|
|
1097
1097
|
"scope": ["support.function.powershell"],
|
|
1098
1098
|
"settings": {
|
|
1099
|
-
"foreground": "#0c969bff"
|
|
1100
|
-
}
|
|
1099
|
+
"foreground": "#0c969bff",
|
|
1100
|
+
},
|
|
1101
1101
|
},
|
|
1102
1102
|
{
|
|
1103
1103
|
"name": "ID Attribute Name in HTML",
|
|
1104
1104
|
"scope": "entity.other.attribute-name.id.html",
|
|
1105
1105
|
"settings": {
|
|
1106
|
-
"foreground": "#4876d6"
|
|
1107
|
-
}
|
|
1106
|
+
"foreground": "#4876d6",
|
|
1107
|
+
},
|
|
1108
1108
|
},
|
|
1109
1109
|
{
|
|
1110
1110
|
"name": "HTML Punctuation Definition Tag",
|
|
1111
1111
|
"scope": "punctuation.definition.tag.html",
|
|
1112
1112
|
"settings": {
|
|
1113
|
-
"foreground": "#994cc3"
|
|
1114
|
-
}
|
|
1113
|
+
"foreground": "#994cc3",
|
|
1114
|
+
},
|
|
1115
1115
|
},
|
|
1116
1116
|
{
|
|
1117
1117
|
"name": "HTML Doctype",
|
|
1118
1118
|
"scope": "meta.tag.sgml.doctype.html",
|
|
1119
1119
|
"settings": {
|
|
1120
|
-
"foreground": "#994cc3"
|
|
1121
|
-
}
|
|
1120
|
+
"foreground": "#994cc3",
|
|
1121
|
+
},
|
|
1122
1122
|
},
|
|
1123
1123
|
{
|
|
1124
1124
|
"name": "JavaScript Classes",
|
|
1125
1125
|
"scope": "meta.class entity.name.type.class.js",
|
|
1126
1126
|
"settings": {
|
|
1127
|
-
"foreground": "#111111"
|
|
1128
|
-
}
|
|
1127
|
+
"foreground": "#111111",
|
|
1128
|
+
},
|
|
1129
1129
|
},
|
|
1130
1130
|
{
|
|
1131
1131
|
"name": "JavaScript Method Declaration e.g. `constructor`",
|
|
1132
1132
|
"scope": "meta.method.declaration storage.type.js",
|
|
1133
1133
|
"settings": {
|
|
1134
|
-
"foreground": "#4876d6"
|
|
1135
|
-
}
|
|
1134
|
+
"foreground": "#4876d6",
|
|
1135
|
+
},
|
|
1136
1136
|
},
|
|
1137
1137
|
{
|
|
1138
1138
|
"name": "JavaScript Terminator",
|
|
1139
1139
|
"scope": "terminator.js",
|
|
1140
1140
|
"settings": {
|
|
1141
|
-
"foreground": "#403f53"
|
|
1142
|
-
}
|
|
1141
|
+
"foreground": "#403f53",
|
|
1142
|
+
},
|
|
1143
1143
|
},
|
|
1144
1144
|
{
|
|
1145
1145
|
"name": "JavaScript Meta Punctuation Definition",
|
|
1146
1146
|
"scope": "meta.js punctuation.definition.js",
|
|
1147
1147
|
"settings": {
|
|
1148
|
-
"foreground": "#403f53"
|
|
1149
|
-
}
|
|
1148
|
+
"foreground": "#403f53",
|
|
1149
|
+
},
|
|
1150
1150
|
},
|
|
1151
1151
|
{
|
|
1152
1152
|
"name": "Entity Names in Code Documentations",
|
|
1153
1153
|
"scope": ["entity.name.type.instance.jsdoc", "entity.name.type.instance.phpdoc"],
|
|
1154
1154
|
"settings": {
|
|
1155
|
-
"foreground": "#5f7e97"
|
|
1156
|
-
}
|
|
1155
|
+
"foreground": "#5f7e97",
|
|
1156
|
+
},
|
|
1157
1157
|
},
|
|
1158
1158
|
{
|
|
1159
1159
|
"name": "Other Variables in Code Documentations",
|
|
1160
1160
|
"scope": ["variable.other.jsdoc", "variable.other.phpdoc"],
|
|
1161
1161
|
"settings": {
|
|
1162
|
-
"foreground": "#78ccf0"
|
|
1163
|
-
}
|
|
1162
|
+
"foreground": "#78ccf0",
|
|
1163
|
+
},
|
|
1164
1164
|
},
|
|
1165
1165
|
{
|
|
1166
1166
|
"name": "JavaScript module imports and exports",
|
|
@@ -1168,18 +1168,18 @@
|
|
|
1168
1168
|
"variable.other.meta.import.js",
|
|
1169
1169
|
"meta.import.js variable.other",
|
|
1170
1170
|
"variable.other.meta.export.js",
|
|
1171
|
-
"meta.export.js variable.other"
|
|
1171
|
+
"meta.export.js variable.other",
|
|
1172
1172
|
],
|
|
1173
1173
|
"settings": {
|
|
1174
|
-
"foreground": "#403f53"
|
|
1175
|
-
}
|
|
1174
|
+
"foreground": "#403f53",
|
|
1175
|
+
},
|
|
1176
1176
|
},
|
|
1177
1177
|
{
|
|
1178
1178
|
"name": "JavaScript Variable Parameter Function",
|
|
1179
1179
|
"scope": "variable.parameter.function.js",
|
|
1180
1180
|
"settings": {
|
|
1181
|
-
"foreground": "#7986E7"
|
|
1182
|
-
}
|
|
1181
|
+
"foreground": "#7986E7",
|
|
1182
|
+
},
|
|
1183
1183
|
},
|
|
1184
1184
|
{
|
|
1185
1185
|
"name": "JavaScript[React] Variable Other Object",
|
|
@@ -1187,179 +1187,179 @@
|
|
|
1187
1187
|
"variable.other.object.js",
|
|
1188
1188
|
"variable.other.object.jsx",
|
|
1189
1189
|
"variable.object.property.js",
|
|
1190
|
-
"variable.object.property.jsx"
|
|
1190
|
+
"variable.object.property.jsx",
|
|
1191
1191
|
],
|
|
1192
1192
|
"settings": {
|
|
1193
|
-
"foreground": "#403f53"
|
|
1194
|
-
}
|
|
1193
|
+
"foreground": "#403f53",
|
|
1194
|
+
},
|
|
1195
1195
|
},
|
|
1196
1196
|
{
|
|
1197
1197
|
"name": "JavaScript Variables",
|
|
1198
1198
|
"scope": ["variable.js", "variable.other.js"],
|
|
1199
1199
|
"settings": {
|
|
1200
|
-
"foreground": "#403f53"
|
|
1201
|
-
}
|
|
1200
|
+
"foreground": "#403f53",
|
|
1201
|
+
},
|
|
1202
1202
|
},
|
|
1203
1203
|
{
|
|
1204
1204
|
"name": "JavaScript Entity Name Type",
|
|
1205
1205
|
"scope": ["entity.name.type.js", "entity.name.type.module.js"],
|
|
1206
1206
|
"settings": {
|
|
1207
1207
|
"foreground": "#111111",
|
|
1208
|
-
"fontStyle": ""
|
|
1209
|
-
}
|
|
1208
|
+
"fontStyle": "",
|
|
1209
|
+
},
|
|
1210
1210
|
},
|
|
1211
1211
|
{
|
|
1212
1212
|
"name": "JavaScript Support Classes",
|
|
1213
1213
|
"scope": "support.class.js",
|
|
1214
1214
|
"settings": {
|
|
1215
|
-
"foreground": "#403f53"
|
|
1216
|
-
}
|
|
1215
|
+
"foreground": "#403f53",
|
|
1216
|
+
},
|
|
1217
1217
|
},
|
|
1218
1218
|
{
|
|
1219
1219
|
"name": "JSON Property Names",
|
|
1220
1220
|
"scope": "support.type.property-name.json",
|
|
1221
1221
|
"settings": {
|
|
1222
|
-
"foreground": "#0c969b"
|
|
1223
|
-
}
|
|
1222
|
+
"foreground": "#0c969b",
|
|
1223
|
+
},
|
|
1224
1224
|
},
|
|
1225
1225
|
{
|
|
1226
1226
|
"name": "JSON Support Constants",
|
|
1227
1227
|
"scope": "support.constant.json",
|
|
1228
1228
|
"settings": {
|
|
1229
|
-
"foreground": "#4876d6"
|
|
1230
|
-
}
|
|
1229
|
+
"foreground": "#4876d6",
|
|
1230
|
+
},
|
|
1231
1231
|
},
|
|
1232
1232
|
{
|
|
1233
1233
|
"name": "JSON Property values (string)",
|
|
1234
1234
|
"scope": "meta.structure.dictionary.value.json string.quoted.double",
|
|
1235
1235
|
"settings": {
|
|
1236
|
-
"foreground": "#c789d6"
|
|
1237
|
-
}
|
|
1236
|
+
"foreground": "#c789d6",
|
|
1237
|
+
},
|
|
1238
1238
|
},
|
|
1239
1239
|
{
|
|
1240
1240
|
"name": "Strings in JSON values",
|
|
1241
1241
|
"scope": "string.quoted.double.json punctuation.definition.string.json",
|
|
1242
1242
|
"settings": {
|
|
1243
|
-
"foreground": "#0c969b"
|
|
1244
|
-
}
|
|
1243
|
+
"foreground": "#0c969b",
|
|
1244
|
+
},
|
|
1245
1245
|
},
|
|
1246
1246
|
{
|
|
1247
1247
|
"name": "Specific JSON Property values like null",
|
|
1248
1248
|
"scope": "meta.structure.dictionary.json meta.structure.dictionary.value constant.language",
|
|
1249
1249
|
"settings": {
|
|
1250
|
-
"foreground": "#bc5454"
|
|
1251
|
-
}
|
|
1250
|
+
"foreground": "#bc5454",
|
|
1251
|
+
},
|
|
1252
1252
|
},
|
|
1253
1253
|
{
|
|
1254
1254
|
"name": "JavaScript Other Variable",
|
|
1255
1255
|
"scope": "variable.other.object.js",
|
|
1256
1256
|
"settings": {
|
|
1257
|
-
"foreground": "#0c969b"
|
|
1258
|
-
}
|
|
1257
|
+
"foreground": "#0c969b",
|
|
1258
|
+
},
|
|
1259
1259
|
},
|
|
1260
1260
|
{
|
|
1261
1261
|
"name": "Ruby Variables",
|
|
1262
1262
|
"scope": ["variable.other.ruby"],
|
|
1263
1263
|
"settings": {
|
|
1264
|
-
"foreground": "#403f53"
|
|
1265
|
-
}
|
|
1264
|
+
"foreground": "#403f53",
|
|
1265
|
+
},
|
|
1266
1266
|
},
|
|
1267
1267
|
{
|
|
1268
1268
|
"name": "Ruby Class",
|
|
1269
1269
|
"scope": ["entity.name.type.class.ruby"],
|
|
1270
1270
|
"settings": {
|
|
1271
|
-
"foreground": "#c96765"
|
|
1272
|
-
}
|
|
1271
|
+
"foreground": "#c96765",
|
|
1272
|
+
},
|
|
1273
1273
|
},
|
|
1274
1274
|
{
|
|
1275
1275
|
"name": "Ruby Hashkeys",
|
|
1276
1276
|
"scope": "constant.language.symbol.hashkey.ruby",
|
|
1277
1277
|
"settings": {
|
|
1278
|
-
"foreground": "#0c969b"
|
|
1279
|
-
}
|
|
1278
|
+
"foreground": "#0c969b",
|
|
1279
|
+
},
|
|
1280
1280
|
},
|
|
1281
1281
|
{
|
|
1282
1282
|
"name": "Ruby Symbols",
|
|
1283
1283
|
"scope": "constant.language.symbol.ruby",
|
|
1284
1284
|
"settings": {
|
|
1285
|
-
"foreground": "#0c969b"
|
|
1286
|
-
}
|
|
1285
|
+
"foreground": "#0c969b",
|
|
1286
|
+
},
|
|
1287
1287
|
},
|
|
1288
1288
|
{
|
|
1289
1289
|
"name": "LESS Tag names",
|
|
1290
1290
|
"scope": "entity.name.tag.less",
|
|
1291
1291
|
"settings": {
|
|
1292
|
-
"foreground": "#994cc3"
|
|
1293
|
-
}
|
|
1292
|
+
"foreground": "#994cc3",
|
|
1293
|
+
},
|
|
1294
1294
|
},
|
|
1295
1295
|
{
|
|
1296
1296
|
"name": "LESS Keyword Other Unit",
|
|
1297
1297
|
"scope": "keyword.other.unit.css",
|
|
1298
1298
|
"settings": {
|
|
1299
|
-
"foreground": "#0c969b"
|
|
1300
|
-
}
|
|
1299
|
+
"foreground": "#0c969b",
|
|
1300
|
+
},
|
|
1301
1301
|
},
|
|
1302
1302
|
{
|
|
1303
1303
|
"name": "Attribute Name for LESS",
|
|
1304
1304
|
"scope": "meta.attribute-selector.less entity.other.attribute-name.attribute",
|
|
1305
1305
|
"settings": {
|
|
1306
|
-
"foreground": "#aa0982"
|
|
1307
|
-
}
|
|
1306
|
+
"foreground": "#aa0982",
|
|
1307
|
+
},
|
|
1308
1308
|
},
|
|
1309
1309
|
{
|
|
1310
1310
|
"name": "Markdown Headings",
|
|
1311
1311
|
"scope": [
|
|
1312
1312
|
"markup.heading.markdown",
|
|
1313
1313
|
"markup.heading.setext.1.markdown",
|
|
1314
|
-
"markup.heading.setext.2.markdown"
|
|
1314
|
+
"markup.heading.setext.2.markdown",
|
|
1315
1315
|
],
|
|
1316
1316
|
"settings": {
|
|
1317
|
-
"foreground": "#4876d6"
|
|
1318
|
-
}
|
|
1317
|
+
"foreground": "#4876d6",
|
|
1318
|
+
},
|
|
1319
1319
|
},
|
|
1320
1320
|
{
|
|
1321
1321
|
"name": "Markdown Italics",
|
|
1322
1322
|
"scope": "markup.italic.markdown",
|
|
1323
1323
|
"settings": {
|
|
1324
1324
|
"foreground": "#994cc3",
|
|
1325
|
-
"fontStyle": "italic"
|
|
1326
|
-
}
|
|
1325
|
+
"fontStyle": "italic",
|
|
1326
|
+
},
|
|
1327
1327
|
},
|
|
1328
1328
|
{
|
|
1329
1329
|
"name": "Markdown Bold",
|
|
1330
1330
|
"scope": "markup.bold.markdown",
|
|
1331
1331
|
"settings": {
|
|
1332
1332
|
"foreground": "#4876d6",
|
|
1333
|
-
"fontStyle": "bold"
|
|
1334
|
-
}
|
|
1333
|
+
"fontStyle": "bold",
|
|
1334
|
+
},
|
|
1335
1335
|
},
|
|
1336
1336
|
{
|
|
1337
1337
|
"name": "Markdown Quote + others",
|
|
1338
1338
|
"scope": "markup.quote.markdown",
|
|
1339
1339
|
"settings": {
|
|
1340
|
-
"foreground": "#697098"
|
|
1341
|
-
}
|
|
1340
|
+
"foreground": "#697098",
|
|
1341
|
+
},
|
|
1342
1342
|
},
|
|
1343
1343
|
{
|
|
1344
1344
|
"name": "Markdown Raw Code + others",
|
|
1345
1345
|
"scope": "markup.inline.raw.markdown",
|
|
1346
1346
|
"settings": {
|
|
1347
|
-
"foreground": "#0c969b"
|
|
1348
|
-
}
|
|
1347
|
+
"foreground": "#0c969b",
|
|
1348
|
+
},
|
|
1349
1349
|
},
|
|
1350
1350
|
{
|
|
1351
1351
|
"name": "Markdown Links",
|
|
1352
1352
|
"scope": ["markup.underline.link.markdown", "markup.underline.link.image.markdown"],
|
|
1353
1353
|
"settings": {
|
|
1354
|
-
"foreground": "#ff869a"
|
|
1355
|
-
}
|
|
1354
|
+
"foreground": "#ff869a",
|
|
1355
|
+
},
|
|
1356
1356
|
},
|
|
1357
1357
|
{
|
|
1358
1358
|
"name": "Markdown Link Title and Description",
|
|
1359
1359
|
"scope": ["string.other.link.title.markdown", "string.other.link.description.markdown"],
|
|
1360
1360
|
"settings": {
|
|
1361
|
-
"foreground": "#403f53"
|
|
1362
|
-
}
|
|
1361
|
+
"foreground": "#403f53",
|
|
1362
|
+
},
|
|
1363
1363
|
},
|
|
1364
1364
|
{
|
|
1365
1365
|
"name": "Markdown Punctuation",
|
|
@@ -1367,116 +1367,116 @@
|
|
|
1367
1367
|
"punctuation.definition.string.markdown",
|
|
1368
1368
|
"punctuation.definition.string.begin.markdown",
|
|
1369
1369
|
"punctuation.definition.string.end.markdown",
|
|
1370
|
-
"meta.link.inline.markdown punctuation.definition.string"
|
|
1370
|
+
"meta.link.inline.markdown punctuation.definition.string",
|
|
1371
1371
|
],
|
|
1372
1372
|
"settings": {
|
|
1373
|
-
"foreground": "#4876d6"
|
|
1374
|
-
}
|
|
1373
|
+
"foreground": "#4876d6",
|
|
1374
|
+
},
|
|
1375
1375
|
},
|
|
1376
1376
|
{
|
|
1377
1377
|
"name": "Markdown MetaData Punctuation",
|
|
1378
1378
|
"scope": ["punctuation.definition.metadata.markdown"],
|
|
1379
1379
|
"settings": {
|
|
1380
|
-
"foreground": "#0c969b"
|
|
1381
|
-
}
|
|
1380
|
+
"foreground": "#0c969b",
|
|
1381
|
+
},
|
|
1382
1382
|
},
|
|
1383
1383
|
{
|
|
1384
1384
|
"name": "Markdown List Punctuation",
|
|
1385
1385
|
"scope": ["beginning.punctuation.definition.list.markdown"],
|
|
1386
1386
|
"settings": {
|
|
1387
|
-
"foreground": "#4876d6"
|
|
1388
|
-
}
|
|
1387
|
+
"foreground": "#4876d6",
|
|
1388
|
+
},
|
|
1389
1389
|
},
|
|
1390
1390
|
{
|
|
1391
1391
|
"name": "Markdown Inline Raw String",
|
|
1392
1392
|
"scope": "markup.inline.raw.string.markdown",
|
|
1393
1393
|
"settings": {
|
|
1394
|
-
"foreground": "#4876d6"
|
|
1395
|
-
}
|
|
1394
|
+
"foreground": "#4876d6",
|
|
1395
|
+
},
|
|
1396
1396
|
},
|
|
1397
1397
|
{
|
|
1398
1398
|
"name": "PHP Variables",
|
|
1399
1399
|
"scope": ["variable.other.php", "variable.other.property.php"],
|
|
1400
1400
|
"settings": {
|
|
1401
|
-
"foreground": "#111111"
|
|
1402
|
-
}
|
|
1401
|
+
"foreground": "#111111",
|
|
1402
|
+
},
|
|
1403
1403
|
},
|
|
1404
1404
|
{
|
|
1405
1405
|
"name": "Support Classes in PHP",
|
|
1406
1406
|
"scope": "support.class.php",
|
|
1407
1407
|
"settings": {
|
|
1408
|
-
"foreground": "#111111"
|
|
1409
|
-
}
|
|
1408
|
+
"foreground": "#111111",
|
|
1409
|
+
},
|
|
1410
1410
|
},
|
|
1411
1411
|
{
|
|
1412
1412
|
"name": "Punctuations in PHP function calls",
|
|
1413
1413
|
"scope": "meta.function-call.php punctuation",
|
|
1414
1414
|
"settings": {
|
|
1415
|
-
"foreground": "#403f53"
|
|
1416
|
-
}
|
|
1415
|
+
"foreground": "#403f53",
|
|
1416
|
+
},
|
|
1417
1417
|
},
|
|
1418
1418
|
{
|
|
1419
1419
|
"name": "PHP Global Variables",
|
|
1420
1420
|
"scope": "variable.other.global.php",
|
|
1421
1421
|
"settings": {
|
|
1422
|
-
"foreground": "#4876d6"
|
|
1423
|
-
}
|
|
1422
|
+
"foreground": "#4876d6",
|
|
1423
|
+
},
|
|
1424
1424
|
},
|
|
1425
1425
|
{
|
|
1426
1426
|
"name": "Declaration Punctuation in PHP Global Variables",
|
|
1427
1427
|
"scope": "variable.other.global.php punctuation.definition.variable",
|
|
1428
1428
|
"settings": {
|
|
1429
|
-
"foreground": "#4876d6"
|
|
1430
|
-
}
|
|
1429
|
+
"foreground": "#4876d6",
|
|
1430
|
+
},
|
|
1431
1431
|
},
|
|
1432
1432
|
{
|
|
1433
1433
|
"name": "Language Constants in Python",
|
|
1434
1434
|
"scope": "constant.language.python",
|
|
1435
1435
|
"settings": {
|
|
1436
|
-
"foreground": "#bc5454"
|
|
1437
|
-
}
|
|
1436
|
+
"foreground": "#bc5454",
|
|
1437
|
+
},
|
|
1438
1438
|
},
|
|
1439
1439
|
{
|
|
1440
1440
|
"name": "Python Function Parameter and Arguments",
|
|
1441
1441
|
"scope": ["variable.parameter.function.python", "meta.function-call.arguments.python"],
|
|
1442
1442
|
"settings": {
|
|
1443
|
-
"foreground": "#4876d6"
|
|
1444
|
-
}
|
|
1443
|
+
"foreground": "#4876d6",
|
|
1444
|
+
},
|
|
1445
1445
|
},
|
|
1446
1446
|
{
|
|
1447
1447
|
"name": "Python Function Call",
|
|
1448
1448
|
"scope": ["meta.function-call.python", "meta.function-call.generic.python"],
|
|
1449
1449
|
"settings": {
|
|
1450
|
-
"foreground": "#0c969b"
|
|
1451
|
-
}
|
|
1450
|
+
"foreground": "#0c969b",
|
|
1451
|
+
},
|
|
1452
1452
|
},
|
|
1453
1453
|
{
|
|
1454
1454
|
"name": "Punctuations in Python",
|
|
1455
1455
|
"scope": "punctuation.python",
|
|
1456
1456
|
"settings": {
|
|
1457
|
-
"foreground": "#403f53"
|
|
1458
|
-
}
|
|
1457
|
+
"foreground": "#403f53",
|
|
1458
|
+
},
|
|
1459
1459
|
},
|
|
1460
1460
|
{
|
|
1461
1461
|
"name": "Decorator Functions in Python",
|
|
1462
1462
|
"scope": "entity.name.function.decorator.python",
|
|
1463
1463
|
"settings": {
|
|
1464
|
-
"foreground": "#4876d6"
|
|
1465
|
-
}
|
|
1464
|
+
"foreground": "#4876d6",
|
|
1465
|
+
},
|
|
1466
1466
|
},
|
|
1467
1467
|
{
|
|
1468
1468
|
"name": "Python Language Variable",
|
|
1469
1469
|
"scope": "source.python variable.language.special",
|
|
1470
1470
|
"settings": {
|
|
1471
|
-
"foreground": "#aa0982"
|
|
1472
|
-
}
|
|
1471
|
+
"foreground": "#aa0982",
|
|
1472
|
+
},
|
|
1473
1473
|
},
|
|
1474
1474
|
{
|
|
1475
1475
|
"name": "Python import control keyword",
|
|
1476
1476
|
"scope": "keyword.control",
|
|
1477
1477
|
"settings": {
|
|
1478
|
-
"foreground": "#994cc3"
|
|
1479
|
-
}
|
|
1478
|
+
"foreground": "#994cc3",
|
|
1479
|
+
},
|
|
1480
1480
|
},
|
|
1481
1481
|
{
|
|
1482
1482
|
"name": "SCSS Variable",
|
|
@@ -1484,49 +1484,49 @@
|
|
|
1484
1484
|
"variable.scss",
|
|
1485
1485
|
"variable.sass",
|
|
1486
1486
|
"variable.parameter.url.scss",
|
|
1487
|
-
"variable.parameter.url.sass"
|
|
1487
|
+
"variable.parameter.url.sass",
|
|
1488
1488
|
],
|
|
1489
1489
|
"settings": {
|
|
1490
|
-
"foreground": "#4876d6"
|
|
1491
|
-
}
|
|
1490
|
+
"foreground": "#4876d6",
|
|
1491
|
+
},
|
|
1492
1492
|
},
|
|
1493
1493
|
{
|
|
1494
1494
|
"name": "Variables in SASS At-Rules",
|
|
1495
1495
|
"scope": ["source.css.scss meta.at-rule variable", "source.css.sass meta.at-rule variable"],
|
|
1496
1496
|
"settings": {
|
|
1497
|
-
"foreground": "#4876d6"
|
|
1498
|
-
}
|
|
1497
|
+
"foreground": "#4876d6",
|
|
1498
|
+
},
|
|
1499
1499
|
},
|
|
1500
1500
|
{
|
|
1501
1501
|
"name": "Variables in SASS At-Rules",
|
|
1502
1502
|
"scope": ["source.css.scss meta.at-rule variable", "source.css.sass meta.at-rule variable"],
|
|
1503
1503
|
"settings": {
|
|
1504
|
-
"foreground": "#111111"
|
|
1505
|
-
}
|
|
1504
|
+
"foreground": "#111111",
|
|
1505
|
+
},
|
|
1506
1506
|
},
|
|
1507
1507
|
{
|
|
1508
1508
|
"name": "Attribute Name for SASS",
|
|
1509
1509
|
"scope": [
|
|
1510
1510
|
"meta.attribute-selector.scss entity.other.attribute-name.attribute",
|
|
1511
|
-
"meta.attribute-selector.sass entity.other.attribute-name.attribute"
|
|
1511
|
+
"meta.attribute-selector.sass entity.other.attribute-name.attribute",
|
|
1512
1512
|
],
|
|
1513
1513
|
"settings": {
|
|
1514
|
-
"foreground": "#aa0982"
|
|
1515
|
-
}
|
|
1514
|
+
"foreground": "#aa0982",
|
|
1515
|
+
},
|
|
1516
1516
|
},
|
|
1517
1517
|
{
|
|
1518
1518
|
"name": "Tag names in SASS",
|
|
1519
1519
|
"scope": ["entity.name.tag.scss", "entity.name.tag.sass"],
|
|
1520
1520
|
"settings": {
|
|
1521
|
-
"foreground": "#0c969b"
|
|
1522
|
-
}
|
|
1521
|
+
"foreground": "#0c969b",
|
|
1522
|
+
},
|
|
1523
1523
|
},
|
|
1524
1524
|
{
|
|
1525
1525
|
"name": "SASS Keyword Other Unit",
|
|
1526
1526
|
"scope": ["keyword.other.unit.scss", "keyword.other.unit.sass"],
|
|
1527
1527
|
"settings": {
|
|
1528
|
-
"foreground": "#994cc3"
|
|
1529
|
-
}
|
|
1528
|
+
"foreground": "#994cc3",
|
|
1529
|
+
},
|
|
1530
1530
|
},
|
|
1531
1531
|
{
|
|
1532
1532
|
"name": "TypeScript[React] Variables and Object Properties",
|
|
@@ -1542,35 +1542,35 @@
|
|
|
1542
1542
|
"variable.other.ts",
|
|
1543
1543
|
"variable.other.tsx",
|
|
1544
1544
|
"variable.tsx",
|
|
1545
|
-
"variable.ts"
|
|
1545
|
+
"variable.ts",
|
|
1546
1546
|
],
|
|
1547
1547
|
"settings": {
|
|
1548
|
-
"foreground": "#403f53"
|
|
1549
|
-
}
|
|
1548
|
+
"foreground": "#403f53",
|
|
1549
|
+
},
|
|
1550
1550
|
},
|
|
1551
1551
|
{
|
|
1552
1552
|
"name": "TypeScript[React] Entity Name Types",
|
|
1553
1553
|
"scope": ["entity.name.type.ts", "entity.name.type.tsx"],
|
|
1554
1554
|
"settings": {
|
|
1555
|
-
"foreground": "#111111"
|
|
1556
|
-
}
|
|
1555
|
+
"foreground": "#111111",
|
|
1556
|
+
},
|
|
1557
1557
|
},
|
|
1558
1558
|
{
|
|
1559
1559
|
"name": "TypeScript[React] Node Classes",
|
|
1560
1560
|
"scope": ["support.class.node.ts", "support.class.node.tsx"],
|
|
1561
1561
|
"settings": {
|
|
1562
|
-
"foreground": "#4876d6"
|
|
1563
|
-
}
|
|
1562
|
+
"foreground": "#4876d6",
|
|
1563
|
+
},
|
|
1564
1564
|
},
|
|
1565
1565
|
{
|
|
1566
1566
|
"name": "TypeScript[React] Entity Name Types as Parameters",
|
|
1567
1567
|
"scope": [
|
|
1568
1568
|
"meta.type.parameters.ts entity.name.type",
|
|
1569
|
-
"meta.type.parameters.tsx entity.name.type"
|
|
1569
|
+
"meta.type.parameters.tsx entity.name.type",
|
|
1570
1570
|
],
|
|
1571
1571
|
"settings": {
|
|
1572
|
-
"foreground": "#5f7e97"
|
|
1573
|
-
}
|
|
1572
|
+
"foreground": "#5f7e97",
|
|
1573
|
+
},
|
|
1574
1574
|
},
|
|
1575
1575
|
{
|
|
1576
1576
|
"name": "TypeScript[React] Import/Export Punctuations",
|
|
@@ -1578,91 +1578,91 @@
|
|
|
1578
1578
|
"meta.import.ts punctuation.definition.block",
|
|
1579
1579
|
"meta.import.tsx punctuation.definition.block",
|
|
1580
1580
|
"meta.export.ts punctuation.definition.block",
|
|
1581
|
-
"meta.export.tsx punctuation.definition.block"
|
|
1581
|
+
"meta.export.tsx punctuation.definition.block",
|
|
1582
1582
|
],
|
|
1583
1583
|
"settings": {
|
|
1584
|
-
"foreground": "#403f53"
|
|
1585
|
-
}
|
|
1584
|
+
"foreground": "#403f53",
|
|
1585
|
+
},
|
|
1586
1586
|
},
|
|
1587
1587
|
{
|
|
1588
1588
|
"name": "TypeScript[React] Punctuation Decorators",
|
|
1589
1589
|
"scope": [
|
|
1590
1590
|
"meta.decorator punctuation.decorator.ts",
|
|
1591
|
-
"meta.decorator punctuation.decorator.tsx"
|
|
1591
|
+
"meta.decorator punctuation.decorator.tsx",
|
|
1592
1592
|
],
|
|
1593
1593
|
"settings": {
|
|
1594
|
-
"foreground": "#4876d6"
|
|
1595
|
-
}
|
|
1594
|
+
"foreground": "#4876d6",
|
|
1595
|
+
},
|
|
1596
1596
|
},
|
|
1597
1597
|
{
|
|
1598
1598
|
"name": "TypeScript[React] Punctuation Decorators",
|
|
1599
1599
|
"scope": "meta.tag.js meta.jsx.children.tsx",
|
|
1600
1600
|
"settings": {
|
|
1601
|
-
"foreground": "#4876d6"
|
|
1602
|
-
}
|
|
1601
|
+
"foreground": "#4876d6",
|
|
1602
|
+
},
|
|
1603
1603
|
},
|
|
1604
1604
|
{
|
|
1605
1605
|
"name": "YAML Entity Name Tags",
|
|
1606
1606
|
"scope": "entity.name.tag.yaml",
|
|
1607
1607
|
"settings": {
|
|
1608
|
-
"foreground": "#111111"
|
|
1609
|
-
}
|
|
1608
|
+
"foreground": "#111111",
|
|
1609
|
+
},
|
|
1610
1610
|
},
|
|
1611
1611
|
{
|
|
1612
1612
|
"name": "JavaScript Variable Other ReadWrite",
|
|
1613
1613
|
"scope": ["variable.other.readwrite.js", "variable.parameter"],
|
|
1614
1614
|
"settings": {
|
|
1615
|
-
"foreground": "#403f53"
|
|
1616
|
-
}
|
|
1615
|
+
"foreground": "#403f53",
|
|
1616
|
+
},
|
|
1617
1617
|
},
|
|
1618
1618
|
{
|
|
1619
1619
|
"name": "Support Class Component",
|
|
1620
1620
|
"scope": ["support.class.component.js", "support.class.component.tsx"],
|
|
1621
1621
|
"settings": {
|
|
1622
1622
|
"foreground": "#aa0982",
|
|
1623
|
-
"fontStyle": ""
|
|
1624
|
-
}
|
|
1623
|
+
"fontStyle": "",
|
|
1624
|
+
},
|
|
1625
1625
|
},
|
|
1626
1626
|
{
|
|
1627
1627
|
"name": "Text nested in React tags",
|
|
1628
1628
|
"scope": ["meta.jsx.children", "meta.jsx.children.js", "meta.jsx.children.tsx"],
|
|
1629
1629
|
"settings": {
|
|
1630
|
-
"foreground": "#403f53"
|
|
1631
|
-
}
|
|
1630
|
+
"foreground": "#403f53",
|
|
1631
|
+
},
|
|
1632
1632
|
},
|
|
1633
1633
|
{
|
|
1634
1634
|
"name": "TypeScript Classes",
|
|
1635
1635
|
"scope": "meta.class entity.name.type.class.tsx",
|
|
1636
1636
|
"settings": {
|
|
1637
|
-
"foreground": "#111111"
|
|
1638
|
-
}
|
|
1637
|
+
"foreground": "#111111",
|
|
1638
|
+
},
|
|
1639
1639
|
},
|
|
1640
1640
|
{
|
|
1641
1641
|
"name": "TypeScript Entity Name Type",
|
|
1642
1642
|
"scope": ["entity.name.type.tsx", "entity.name.type.module.tsx"],
|
|
1643
1643
|
"settings": {
|
|
1644
|
-
"foreground": "#111111"
|
|
1645
|
-
}
|
|
1644
|
+
"foreground": "#111111",
|
|
1645
|
+
},
|
|
1646
1646
|
},
|
|
1647
1647
|
{
|
|
1648
1648
|
"name": "TypeScript Class Variable Keyword",
|
|
1649
1649
|
"scope": [
|
|
1650
1650
|
"meta.class.ts meta.var.expr.ts storage.type.ts",
|
|
1651
|
-
"meta.class.tsx meta.var.expr.tsx storage.type.tsx"
|
|
1651
|
+
"meta.class.tsx meta.var.expr.tsx storage.type.tsx",
|
|
1652
1652
|
],
|
|
1653
1653
|
"settings": {
|
|
1654
|
-
"foreground": "#C792EA"
|
|
1655
|
-
}
|
|
1654
|
+
"foreground": "#C792EA",
|
|
1655
|
+
},
|
|
1656
1656
|
},
|
|
1657
1657
|
{
|
|
1658
1658
|
"name": "TypeScript Method Declaration e.g. `constructor`",
|
|
1659
1659
|
"scope": [
|
|
1660
1660
|
"meta.method.declaration storage.type.ts",
|
|
1661
|
-
"meta.method.declaration storage.type.tsx"
|
|
1661
|
+
"meta.method.declaration storage.type.tsx",
|
|
1662
1662
|
],
|
|
1663
1663
|
"settings": {
|
|
1664
|
-
"foreground": "#4876d6"
|
|
1665
|
-
}
|
|
1664
|
+
"foreground": "#4876d6",
|
|
1665
|
+
},
|
|
1666
1666
|
},
|
|
1667
1667
|
{
|
|
1668
1668
|
"name": "normalize font style of certain components",
|
|
@@ -1685,11 +1685,11 @@
|
|
|
1685
1685
|
"variable.other.readwrite.js",
|
|
1686
1686
|
"storage.type",
|
|
1687
1687
|
"source.css",
|
|
1688
|
-
"string.quoted"
|
|
1688
|
+
"string.quoted",
|
|
1689
1689
|
],
|
|
1690
1690
|
"settings": {
|
|
1691
|
-
"fontStyle": ""
|
|
1692
|
-
}
|
|
1693
|
-
}
|
|
1694
|
-
]
|
|
1691
|
+
"fontStyle": "",
|
|
1692
|
+
},
|
|
1693
|
+
},
|
|
1694
|
+
],
|
|
1695
1695
|
}
|