1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
|
{
xdg.configFile = {
"matugen/templates/zed.json" = {
enable = true;
text =
# toml
''
{
"$schema": "https://zed.dev/schema/themes/v0.2.0.json",
"name": "Matugen",
"author": "Matugen",
"themes": [
{
"name": "Matugen Dark",
"appearance": "dark",
"style": {
"accents": [
"{{colors.primary.dark.hex}}",
"{{colors.secondary.dark.hex}}",
"{{colors.tertiary.dark.hex}}"
],
"background.appearance": "opaque",
"border": "{{colors.outline_variant.dark.hex}}",
"border.variant": "{{colors.outline.dark.hex}}",
"border.focused": "{{colors.primary.dark.hex}}",
"border.selected": "{{colors.primary.dark.hex}}",
"border.transparent": "{{colors.outline_variant.dark.hex}}40",
"border.disabled": "{{colors.outline_variant.dark.hex}}60",
"elevated_surface.background": "{{colors.surface_container_high.dark.hex}}",
"surface.background": "{{colors.surface.dark.hex}}",
"background": "{{colors.background.dark.hex}}",
"element.background": "{{colors.surface_container.dark.hex}}",
"element.hover": "{{colors.surface_container_high.dark.hex}}",
"element.active": "{{colors.surface_container_highest.dark.hex}}",
"element.selected": "{{colors.secondary_container.dark.hex}}",
"element.disabled": "{{colors.surface_variant.dark.hex}}",
"drop_target.background": "{{colors.primary_container.dark.hex}}80",
"ghost_element.background": null,
"ghost_element.hover": "{{colors.surface_container.dark.hex}}80",
"ghost_element.active": "{{colors.surface_container_high.dark.hex}}",
"ghost_element.selected": "{{colors.secondary_container.dark.hex}}80",
"ghost_element.disabled": "{{colors.surface_variant.dark.hex}}60",
"text": "{{colors.on_surface.dark.hex}}",
"text.muted": "{{colors.on_surface_variant.dark.hex}}",
"text.placeholder": "{{colors.on_surface_variant.dark.hex}}99",
"text.disabled": "{{colors.on_surface.dark.hex}}60",
"text.accent": "{{colors.primary.dark.hex}}",
"icon": "{{colors.on_surface.dark.hex}}",
"icon.muted": "{{colors.on_surface_variant.dark.hex}}",
"icon.disabled": "{{colors.on_surface.dark.hex}}60",
"icon.placeholder": "{{colors.on_surface_variant.dark.hex}}80",
"icon.accent": "{{colors.primary.dark.hex}}",
"status_bar.background": "{{colors.surface.dark.hex}}",
"title_bar.background": "{{colors.surface.dark.hex}}",
"title_bar.inactive_background": "{{colors.surface_dim.dark.hex}}",
"toolbar.background": "{{colors.surface_container_low.dark.hex}}",
"tab_bar.background": "{{colors.surface_container.dark.hex}}",
"tab.inactive_backgorround": "{{colors.surface_container_low.dark.hex}}",
"tab.active_background": "{{colors.surface_container_high.dark.hex}}",
"search.match_background": "{{colors.tertiary_container.dark.hex}}80",
"panel.background": "{{colors.surface_container_low.dark.hex}}",
"panel.focused_border": "{{colors.primary.dark.hex}}",
"pane.focused_border": "{{colors.primary.dark.hex}}",
"scrollbar.thumb.background": "{{colors.on_surface_variant.dark.hex}}80",
"scrollbar.thumb.hover_background": "{{colors.on_surface_variant.dark.hex}}c0",
"scrollbar.thumb.border": "{{colors.outline_variant.dark.hex}}40",
"scrollbar.track.background": "{{colors.surface_container.dark.hex}}",
"scrollbar.track.border": "{{colors.outline_variant.dark.hex}}20",
"editor.foreground": "{{colors.on_surface.dark.hex}}",
"editor.background": "{{colors.surface_container_low.dark.hex}}",
"editor.gutter.background": "{{colors.surface_container_low.dark.hex}}",
"editor.subheader.background": "{{colors.surface_container.dark.hex}}",
"editor.indent_guide": "{{colors.outline_variant.dark.hex}}60",
"editor.indent_guide_active": "{{colors.outline.dark.hex}}",
"editor.active_line.background": "{{colors.surface_container_high.dark.hex}}80",
"editor.highlighted_line.background": "{{colors.surface_container_high.dark.hex}}60",
"editor.line_number": "{{colors.on_surface_variant.dark.hex}}",
"editor.active_line_number": "{{colors.primary.dark.hex}}",
"editor.invisible": "{{colors.outline_variant.dark.hex}}80",
"editor.wrap_guide": "{{colors.outline_variant.dark.hex}}40",
"editor.active_wrap_guide": "{{colors.outline.dark.hex}}80",
"editor.document_highlight.read_background": "{{colors.primary_container.dark.hex}}60",
"editor.document_highlight.write_background": "{{colors.secondary_container.dark.hex}}80",
"terminal.background": "{{colors.surface_container_low.dark.hex}}",
"terminal.foreground": "{{colors.on_surface.dark.hex}}",
"terminal.bright_foreground": "{{colors.on_surface.dark.hex}}",
"terminal.dim_foreground": "{{colors.on_surface_variant.dark.hex}}",
"terminal.ansi.black": "{{colors.surface_dim.dark.hex}}",
"terminal.ansi.bright_black": "{{colors.surface_container_high.dark.hex}}",
"terminal.ansi.dim_black": "{{colors.surface.dark.hex}}",
"terminal.ansi.red": "{{colors.error.dark.hex}}",
"terminal.ansi.bright_red": "{{colors.error.dark.hex}}",
"terminal.ansi.dim_red": "{{colors.on_error_container.dark.hex}}",
"terminal.ansi.green": "{{colors.tertiary.dark.hex}}",
"terminal.ansi.bright_green": "{{colors.tertiary.dark.hex}}",
"terminal.ansi.dim_green": "{{colors.on_tertiary_container.dark.hex}}",
"terminal.ansi.yellow": "{{colors.tertiary_fixed_dim.dark.hex}}",
"terminal.ansi.bright_yellow": "{{colors.tertiary_fixed.dark.hex}}",
"terminal.ansi.dim_yellow": "{{colors.on_tertiary_fixed.dark.hex}}",
"terminal.ansi.blue": "{{colors.primary.dark.hex}}",
"terminal.ansi.bright_blue": "{{colors.primary.dark.hex}}",
"terminal.ansi.dim_blue": "{{colors.on_primary_container.dark.hex}}",
"terminal.ansi.magenta": "{{colors.secondary.dark.hex}}",
"terminal.ansi.bright_magenta": "{{colors.secondary.dark.hex}}",
"terminal.ansi.dim_magenta": "{{colors.on_secondary_container.dark.hex}}",
"terminal.ansi.cyan": "{{colors.primary_fixed_dim.dark.hex}}",
"terminal.ansi.bright_cyan": "{{colors.primary_fixed.dark.hex}}",
"terminal.ansi.dim_cyan": "{{colors.on_primary_fixed_variant.dark.hex}}",
"terminal.ansi.white": "{{colors.on_surface.dark.hex}}",
"terminal.ansi.bright_white": "{{colors.on_surface.dark.hex}}",
"terminal.ansi.dim_white": "{{colors.on_surface_variant.dark.hex}}",
"link_text.hover": "{{colors.primary.dark.hex}}",
"conflict": "{{colors.error.dark.hex}}",
"conflict.background": "{{colors.error_container.dark.hex}}80",
"conflict.border": "{{colors.on_error_container.dark.hex}}",
"created": "{{colors.tertiary.dark.hex}}",
"created.background": "{{colors.tertiary_container.dark.hex}}80",
"created.border": "{{colors.on_tertiary_container.dark.hex}}",
"deleted": "{{colors.error.dark.hex}}",
"deleted.background": "{{colors.error_container.dark.hex}}80",
"deleted.border": "{{colors.on_error_container.dark.hex}}",
"error": "{{colors.error.dark.hex}}",
"error.background": "{{colors.error_container.dark.hex}}",
"error.border": "{{colors.on_error_container.dark.hex}}",
"hidden": "{{colors.outline_variant.dark.hex}}",
"hidden.border": "{{colors.outline_variant.dark.hex}}60",
"hint": "{{colors.primary.dark.hex}}",
"hint.background": "{{colors.primary_container.dark.hex}}80",
"hint.border": "{{colors.on_primary_container.dark.hex}}",
"ignored": "{{colors.on_surface_variant.dark.hex}}60",
"ignored.background": "{{colors.surface_variant.dark.hex}}40",
"ignored.border": "{{colors.outline_variant.dark.hex}}40",
"info": "{{colors.primary.dark.hex}}",
"info.background": "{{colors.primary_container.dark.hex}}80",
"info.border": "{{colors.on_primary_container.dark.hex}}",
"modified": "{{colors.secondary.dark.hex}}",
"modified.background": "{{colors.secondary_container.dark.hex}}80",
"modified.border": "{{colors.on_secondary_container.dark.hex}}",
"predictive": "{{colors.on_surface_variant.dark.hex}}80",
"predictive.border": "{{colors.outline.dark.hex}}",
"predictive.background": "{{colors.surface_container_highest.dark.hex}}80",
"renamed": "{{colors.secondary.dark.hex}}",
"renamed.border": "{{colors.on_secondary_container.dark.hex}}",
"renamed.background": "{{colors.secondary_container.dark.hex}}80",
"success": "{{colors.tertiary.dark.hex}}",
"success.background": "{{colors.tertiary_container.dark.hex}}80",
"success.border": "{{colors.on_tertiary_container.dark.hex}}",
"unreachable": "{{colors.on_surface_variant.dark.hex}}60",
"unreachable.background": "{{colors.surface_variant.dark.hex}}40",
"unreachable.border": "{{colors.outline_variant.dark.hex}}60",
"warning": "{{colors.tertiary_fixed_dim.dark.hex}}",
"warning.background": "{{colors.tertiary_container.dark.hex}}80",
"warning.border": "{{colors.on_tertiary_container.dark.hex}}",
"players": [
{
"cursor": "{{colors.primary.dark.hex}}",
"background": "{{colors.primary_container.dark.hex}}80",
"selection": "{{colors.primary_container.dark.hex}}60"
},
{
"cursor": "{{colors.secondary.dark.hex}}",
"background": "{{colors.secondary_container.dark.hex}}80",
"selection": "{{colors.secondary_container.dark.hex}}60"
}
],
"syntax": {
"boolean": {
"color": "{{colors.tertiary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"comment": {
"color": "{{colors.on_surface_variant.dark.hex}}",
"font_style": "italic",
"font_weight": null
},
"comment.doc": {
"color": "{{colors.on_surface_variant.dark.hex}}",
"font_style": "italic",
"font_weight": null
},
"constant": {
"color": "{{colors.tertiary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"constructor": {
"color": "{{colors.secondary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"emphasis": {
"color": "{{colors.primary.dark.hex}}",
"font_style": "italic",
"font_weight": null
},
"emphasis.strong": {
"color": "{{colors.primary.dark.hex}}",
"font_style": null,
"font_weight": 700
},
"function": {
"color": "{{colors.primary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"keyword": {
"color": "{{colors.secondary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"number": {
"color": "{{colors.tertiary_fixed.dark.hex}}",
"font_style": null,
"font_weight": null
},
"operator": {
"color": "{{colors.on_surface_variant.dark.hex}}",
"font_style": null,
"font_weight": null
},
"property": {
"color": "{{colors.on_surface.dark.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation": {
"color": "{{colors.on_surface_variant.dark.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation.bracket": {
"color": "{{colors.secondary_fixed.dark.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation.delimiter": {
"color": "{{colors.on_surface_variant.dark.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation.list_marker": {
"color": "{{colors.on_surface_variant.dark.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation.special": {
"color": "{{colors.secondary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"string": {
"color": "{{colors.tertiary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"string.escape": {
"color": "{{colors.tertiary_fixed_dim.dark.hex}}",
"font_style": null,
"font_weight": null
},
"string.regex": {
"color": "{{colors.tertiary_fixed.dark.hex}}",
"font_style": null,
"font_weight": null
},
"string.special": {
"color": "{{colors.on_tertiary_container.dark.hex}}",
"font_style": null,
"font_weight": null
},
"string.special.symbol": {
"color": "{{colors.tertiary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"tag": {
"color": "{{colors.secondary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"text.literal": {
"color": "{{colors.tertiary.dark.hex}}",
"font_style": null,
"font_weight": null
},
"type": {
"color": "{{colors.primary_fixed.dark.hex}}",
"font_style": null,
"font_weight": null
},
"variable": {
"color": "{{colors.on_surface.dark.hex}}",
"font_style": null,
"font_weight": null
},
"variable.special": {
"color": "{{colors.primary.dark.hex}}",
"font_style": null,
"font_weight": null
}
}
}
},
{
"name": "Matugen Light",
"appearance": "light",
"style": {
"accents": [
"{{colors.primary.light.hex}}",
"{{colors.secondary.light.hex}}",
"{{colors.tertiary.light.hex}}"
],
"background.appearance": "opaque",
"border": "{{colors.outline_variant.light.hex}}",
"border.variant": "{{colors.outline.light.hex}}",
"border.focused": "{{colors.primary.light.hex}}",
"border.selected": "{{colors.primary.light.hex}}",
"border.transparent": "{{colors.outline_variant.light.hex}}40",
"border.disabled": "{{colors.outline_variant.light.hex}}60",
"elevated_surface.background": "{{colors.surface_container_high.light.hex}}",
"surface.background": "{{colors.surface.light.hex}}",
"background": "{{colors.background.light.hex}}",
"element.background": "{{colors.surface_container.light.hex}}",
"element.hover": "{{colors.surface_container_high.light.hex}}",
"element.active": "{{colors.surface_container_highest.light.hex}}",
"element.selected": "{{colors.secondary_container.light.hex}}",
"element.disabled": "{{colors.surface_variant.light.hex}}",
"drop_target.background": "{{colors.primary_container.light.hex}}80",
"ghost_element.background": null,
"ghost_element.hover": "{{colors.surface_container.light.hex}}80",
"ghost_element.active": "{{colors.surface_container_high.light.hex}}",
"ghost_element.selected": "{{colors.secondary_container.light.hex}}80",
"ghost_element.disabled": "{{colors.surface_variant.light.hex}}60",
"text": "{{colors.on_surface.light.hex}}",
"text.muted": "{{colors.on_surface_variant.light.hex}}",
"text.placeholder": "{{colors.on_surface_variant.light.hex}}99",
"text.disabled": "{{colors.on_surface.light.hex}}60",
"text.accent": "{{colors.primary.light.hex}}",
"icon": "{{colors.on_surface.light.hex}}",
"icon.muted": "{{colors.on_surface_variant.light.hex}}",
"icon.disabled": "{{colors.on_surface.light.hex}}60",
"icon.placeholder": "{{colors.on_surface_variant.light.hex}}80",
"icon.accent": "{{colors.primary.light.hex}}",
"status_bar.background": "{{colors.surface.light.hex}}",
"title_bar.background": "{{colors.surface.light.hex}}",
"title_bar.inactive_background": "{{colors.surface_dim.light.hex}}",
"toolbar.background": "{{colors.surface_container_low.light.hex}}",
"tab_bar.background": "{{colors.surface_container.light.hex}}",
"tab.inactive_backgorround": "{{colors.surface_container_low.light.hex}}",
"tab.active_background": "{{colors.surface_container_high.light.hex}}",
"search.match_background": "{{colors.tertiary_container.light.hex}}80",
"panel.background": "{{colors.surface_container_low.light.hex}}",
"panel.focused_border": "{{colors.primary.light.hex}}",
"pane.focused_border": "{{colors.primary.light.hex}}",
"scrollbar.thumb.background": "{{colors.on_surface_variant.light.hex}}80",
"scrollbar.thumb.hover_background": "{{colors.on_surface_variant.light.hex}}c0",
"scrollbar.thumb.border": "{{colors.outline_variant.light.hex}}40",
"scrollbar.track.background": "{{colors.surface_container.light.hex}}",
"scrollbar.track.border": "{{colors.outline_variant.light.hex}}20",
"editor.foreground": "{{colors.on_surface.light.hex}}",
"editor.background": "{{colors.surface_container_low.light.hex}}",
"editor.gutter.background": "{{colors.surface_container_low.light.hex}}",
"editor.subheader.background": "{{colors.surface_container.light.hex}}",
"editor.indent_guide": "{{colors.outline_variant.light.hex}}60",
"editor.indent_guide_active": "{{colors.outline.light.hex}}",
"editor.active_line.background": "{{colors.surface_container_high.light.hex}}80",
"editor.highlighted_line.background": "{{colors.surface_container_high.light.hex}}60",
"editor.line_number": "{{colors.on_surface_variant.light.hex}}",
"editor.active_line_number": "{{colors.primary.light.hex}}",
"editor.invisible": "{{colors.outline_variant.light.hex}}80",
"editor.wrap_guide": "{{colors.outline_variant.light.hex}}40",
"editor.active_wrap_guide": "{{colors.outline.light.hex}}80",
"editor.document_highlight.read_background": "{{colors.primary_container.light.hex}}60",
"editor.document_highlight.write_background": "{{colors.secondary_container.light.hex}}80",
"terminal.background": "{{colors.surface_container_low.light.hex}}",
"terminal.foreground": "{{colors.on_surface.light.hex}}",
"terminal.bright_foreground": "{{colors.on_surface.light.hex}}",
"terminal.dim_foreground": "{{colors.on_surface_variant.light.hex}}",
"terminal.ansi.black": "{{colors.surface_dim.light.hex}}",
"terminal.ansi.bright_black": "{{colors.surface_container_high.light.hex}}",
"terminal.ansi.dim_black": "{{colors.surface.light.hex}}",
"terminal.ansi.red": "{{colors.error.light.hex}}",
"terminal.ansi.bright_red": "{{colors.error.light.hex}}",
"terminal.ansi.dim_red": "{{colors.on_error_container.light.hex}}",
"terminal.ansi.green": "{{colors.tertiary.light.hex}}",
"terminal.ansi.bright_green": "{{colors.tertiary.light.hex}}",
"terminal.ansi.dim_green": "{{colors.on_tertiary_container.light.hex}}",
"terminal.ansi.yellow": "{{colors.tertiary_fixed_dim.light.hex}}",
"terminal.ansi.bright_yellow": "{{colors.tertiary_fixed.light.hex}}",
"terminal.ansi.dim_yellow": "{{colors.on_tertiary_fixed.light.hex}}",
"terminal.ansi.blue": "{{colors.primary.light.hex}}",
"terminal.ansi.bright_blue": "{{colors.primary.light.hex}}",
"terminal.ansi.dim_blue": "{{colors.on_primary_container.light.hex}}",
"terminal.ansi.magenta": "{{colors.secondary.light.hex}}",
"terminal.ansi.bright_magenta": "{{colors.secondary.light.hex}}",
"terminal.ansi.dim_magenta": "{{colors.on_secondary_container.light.hex}}",
"terminal.ansi.cyan": "{{colors.primary_fixed_dim.light.hex}}",
"terminal.ansi.bright_cyan": "{{colors.primary_fixed.light.hex}}",
"terminal.ansi.dim_cyan": "{{colors.on_primary_fixed_variant.light.hex}}",
"terminal.ansi.white": "{{colors.on_surface.light.hex}}",
"terminal.ansi.bright_white": "{{colors.on_surface.light.hex}}",
"terminal.ansi.dim_white": "{{colors.on_surface_variant.light.hex}}",
"link_text.hover": "{{colors.primary.light.hex}}",
"conflict": "{{colors.error.light.hex}}",
"conflict.background": "{{colors.error_container.light.hex}}80",
"conflict.border": "{{colors.on_error_container.light.hex}}",
"created": "{{colors.tertiary.light.hex}}",
"created.background": "{{colors.tertiary_container.light.hex}}80",
"created.border": "{{colors.on_tertiary_container.light.hex}}",
"deleted": "{{colors.error.light.hex}}",
"deleted.background": "{{colors.error_container.light.hex}}80",
"deleted.border": "{{colors.on_error_container.light.hex}}",
"error": "{{colors.error.light.hex}}",
"error.background": "{{colors.error_container.light.hex}}",
"error.border": "{{colors.on_error_container.light.hex}}",
"hidden": "{{colors.outline_variant.light.hex}}",
"hidden.border": "{{colors.outline_variant.light.hex}}60",
"hint": "{{colors.primary.light.hex}}",
"hint.background": "{{colors.primary_container.light.hex}}80",
"hint.border": "{{colors.on_primary_container.light.hex}}",
"ignored": "{{colors.on_surface_variant.light.hex}}60",
"ignored.background": "{{colors.surface_variant.light.hex}}40",
"ignored.border": "{{colors.outline_variant.light.hex}}40",
"info": "{{colors.primary.light.hex}}",
"info.background": "{{colors.primary_container.light.hex}}80",
"info.border": "{{colors.on_primary_container.light.hex}}",
"modified": "{{colors.secondary.light.hex}}",
"modified.background": "{{colors.secondary_container.light.hex}}80",
"modified.border": "{{colors.on_secondary_container.light.hex}}",
"predictive": "{{colors.on_surface_variant.light.hex}}80",
"predictive.border": "{{colors.outline.light.hex}}",
"predictive.background": "{{colors.surface_container_highest.light.hex}}80",
"renamed": "{{colors.secondary.light.hex}}",
"renamed.border": "{{colors.on_secondary_container.light.hex}}",
"renamed.background": "{{colors.secondary_container.light.hex}}80",
"success": "{{colors.tertiary.light.hex}}",
"success.background": "{{colors.tertiary_container.light.hex}}80",
"success.border": "{{colors.on_tertiary_container.light.hex}}",
"unreachable": "{{colors.on_surface_variant.light.hex}}60",
"unreachable.background": "{{colors.surface_variant.light.hex}}40",
"unreachable.border": "{{colors.outline_variant.light.hex}}60",
"warning": "{{colors.tertiary_fixed_dim.light.hex}}",
"warning.background": "{{colors.tertiary_container.light.hex}}80",
"warning.border": "{{colors.on_tertiary_container.light.hex}}",
"players": [
{
"cursor": "{{colors.primary.light.hex}}",
"background": "{{colors.primary_container.light.hex}}80",
"selection": "{{colors.primary_container.light.hex}}60"
},
{
"cursor": "{{colors.secondary.light.hex}}",
"background": "{{colors.secondary_container.light.hex}}80",
"selection": "{{colors.secondary_container.light.hex}}60"
}
],
"syntax": {
"boolean": {
"color": "{{colors.tertiary.light.hex}}",
"font_style": null,
"font_weight": null
},
"comment": {
"color": "{{colors.on_surface_variant.light.hex}}",
"font_style": "italic",
"font_weight": null
},
"comment.doc": {
"color": "{{colors.on_surface_variant.light.hex}}",
"font_style": "italic",
"font_weight": null
},
"constant": {
"color": "{{colors.tertiary.light.hex}}",
"font_style": null,
"font_weight": null
},
"constructor": {
"color": "{{colors.secondary.light.hex}}",
"font_style": null,
"font_weight": null
},
"emphasis": {
"color": "{{colors.primary.light.hex}}",
"font_style": "italic",
"font_weight": null
},
"emphasis.strong": {
"color": "{{colors.primary.light.hex}}",
"font_style": null,
"font_weight": 700
},
"function": {
"color": "{{colors.primary.light.hex}}",
"font_style": null,
"font_weight": null
},
"keyword": {
"color": "{{colors.secondary.light.hex}}",
"font_style": null,
"font_weight": null
},
"number": {
"color": "{{colors.tertiary_fixed.light.hex}}",
"font_style": null,
"font_weight": null
},
"operator": {
"color": "{{colors.on_surface_variant.light.hex}}",
"font_style": null,
"font_weight": null
},
"property": {
"color": "{{colors.on_surface.light.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation": {
"color": "{{colors.on_surface_variant.light.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation.bracket": {
"color": "{{colors.secondary_fixed.light.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation.delimiter": {
"color": "{{colors.on_surface_variant.light.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation.list_marker": {
"color": "{{colors.on_surface_variant.light.hex}}",
"font_style": null,
"font_weight": null
},
"punctuation.special": {
"color": "{{colors.secondary.light.hex}}",
"font_style": null,
"font_weight": null
},
"string": {
"color": "{{colors.tertiary.light.hex}}",
"font_style": null,
"font_weight": null
},
"string.escape": {
"color": "{{colors.tertiary_fixed_dim.light.hex}}",
"font_style": null,
"font_weight": null
},
"string.regex": {
"color": "{{colors.tertiary_fixed.light.hex}}",
"font_style": null,
"font_weight": null
},
"string.special": {
"color": "{{colors.on_tertiary_container.light.hex}}",
"font_style": null,
"font_weight": null
},
"string.special.symbol": {
"color": "{{colors.tertiary.light.hex}}",
"font_style": null,
"font_weight": null
},
"tag": {
"color": "{{colors.secondary.light.hex}}",
"font_style": null,
"font_weight": null
},
"text.literal": {
"color": "{{colors.tertiary.light.hex}}",
"font_style": null,
"font_weight": null
},
"type": {
"color": "{{colors.primary_fixed.light.hex}}",
"font_style": null,
"font_weight": null
},
"variable": {
"color": "{{colors.on_surface.light.hex}}",
"font_style": null,
"font_weight": null
},
"variable.special": {
"color": "{{colors.primary.light.hex}}",
"font_style": null,
"font_weight": null
}
}
}
}
]
}
'';
};
};
}
|