summaryrefslogtreecommitdiffstats
path: root/test/expected/test_cli.sh_cc06341dd560f927512e92c7c0985ed8b25827ae.out
blob: 22a87a39bababf5cbf0a647d5e2f90b3c4b724ed (plain)
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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
/global/keymap_def_alt_hour_boundary -> default-keymap.json:5
/global/keymap_def_alt_warning -> default-keymap.json:4
/global/keymap_def_clear -> default-keymap.json:13
/global/keymap_def_db_view -> default-keymap.json:8
/global/keymap_def_hist_view -> default-keymap.json:9
/global/keymap_def_next_mark -> default-keymap.json:16
/global/keymap_def_next_section -> default-keymap.json:15
/global/keymap_def_next_user_mark -> default-keymap.json:7
/global/keymap_def_pop_view -> default-keymap.json:11
/global/keymap_def_prev_section -> default-keymap.json:14
/global/keymap_def_scroll_horiz -> default-keymap.json:6
/global/keymap_def_text_view -> default-keymap.json:10
/global/keymap_def_time_offset -> default-keymap.json:17
/global/keymap_def_zoom -> default-keymap.json:12
/log/annotations/com.vmware.vmacore.backtrace/condition -> root-config.json:23
/log/annotations/com.vmware.vmacore.backtrace/description -> root-config.json:22
/log/annotations/com.vmware.vmacore.backtrace/handler -> root-config.json:24
/log/annotations/org.lnav.test/condition -> {test_dir}/configs/installed/anno-test.json:7
/log/annotations/org.lnav.test/description -> {test_dir}/configs/installed/anno-test.json:6
/log/annotations/org.lnav.test/handler -> {test_dir}/configs/installed/anno-test.json:8
/log/date-time/convert-zoned-to-local -> root-config.json:18
/tuning/archive-manager/cache-ttl -> root-config.json:31
/tuning/archive-manager/min-free-space -> root-config.json:30
/tuning/clipboard/impls/MacOS/find/read -> root-config.json:59
/tuning/clipboard/impls/MacOS/find/write -> root-config.json:58
/tuning/clipboard/impls/MacOS/general/read -> root-config.json:55
/tuning/clipboard/impls/MacOS/general/write -> root-config.json:54
/tuning/clipboard/impls/MacOS/test -> root-config.json:52
/tuning/clipboard/impls/NeoVim/general/read -> root-config.json:87
/tuning/clipboard/impls/NeoVim/general/write -> root-config.json:86
/tuning/clipboard/impls/NeoVim/test -> root-config.json:84
/tuning/clipboard/impls/Wayland/general/read -> root-config.json:66
/tuning/clipboard/impls/Wayland/general/write -> root-config.json:65
/tuning/clipboard/impls/Wayland/test -> root-config.json:63
/tuning/clipboard/impls/Windows/general/write -> root-config.json:93
/tuning/clipboard/impls/Windows/test -> root-config.json:91
/tuning/clipboard/impls/X11-xclip/general/read -> root-config.json:73
/tuning/clipboard/impls/X11-xclip/general/write -> root-config.json:72
/tuning/clipboard/impls/X11-xclip/test -> root-config.json:70
/tuning/clipboard/impls/tmux/general/read -> root-config.json:80
/tuning/clipboard/impls/tmux/general/write -> root-config.json:79
/tuning/clipboard/impls/tmux/test -> root-config.json:77
/tuning/piper/max-size -> root-config.json:45
/tuning/piper/rotations -> root-config.json:46
/tuning/piper/ttl -> root-config.json:47
/tuning/remote/ssh/command -> root-config.json:35
/tuning/remote/ssh/config/BatchMode -> root-config.json:37
/tuning/remote/ssh/config/ConnectTimeout -> root-config.json:38
/tuning/remote/ssh/start-command -> root-config.json:40
/tuning/remote/ssh/transfer-command -> root-config.json:41
/tuning/url-scheme/docker-compose/handler -> root-config.json:103
/tuning/url-scheme/docker/handler -> root-config.json:100
/tuning/url-scheme/hw/handler -> {test_dir}/configs/installed/hw-url-handler.json:6
/tuning/url-scheme/journald/handler -> root-config.json:106
/tuning/url-scheme/piper/handler -> root-config.json:109
/tuning/url-scheme/podman/handler -> root-config.json:112
/ui/clock-format -> root-config.json:4
/ui/default-colors -> root-config.json:6
/ui/dim-text -> root-config.json:5
/ui/keymap -> root-config.json:7
/ui/keymap-defs/de/x21/command -> de-keymap.json:31
/ui/keymap-defs/de/x22/command -> de-keymap.json:34
/ui/keymap-defs/de/x24/command -> de-keymap.json:40
/ui/keymap-defs/de/x25/command -> de-keymap.json:43
/ui/keymap-defs/de/x26/command -> de-keymap.json:46
/ui/keymap-defs/de/x31/command -> de-keymap.json:7
/ui/keymap-defs/de/x32/command -> de-keymap.json:10
/ui/keymap-defs/de/x33/command -> de-keymap.json:13
/ui/keymap-defs/de/x34/command -> de-keymap.json:16
/ui/keymap-defs/de/x35/command -> de-keymap.json:19
/ui/keymap-defs/de/x36/command -> de-keymap.json:22
/ui/keymap-defs/de/x37/command -> de-keymap.json:25
/ui/keymap-defs/de/x38/command -> de-keymap.json:28
/ui/keymap-defs/de/xc2xa7/command -> de-keymap.json:37
/ui/keymap-defs/default/x04/command -> default-keymap.json:77
/ui/keymap-defs/default/x06/command -> default-keymap.json:65
/ui/keymap-defs/default/x0c/command -> default-keymap.json:68
/ui/keymap-defs/default/x12/command -> default-keymap.json:71
/ui/keymap-defs/default/x15/command -> default-keymap.json:80
/ui/keymap-defs/default/x17/command -> default-keymap.json:146
/ui/keymap-defs/default/x18/command -> default-keymap.json:74
/ui/keymap-defs/default/x21/command -> default-keymap.json:47
/ui/keymap-defs/default/x23/command -> default-keymap.json:53
/ui/keymap-defs/default/x24/command -> default-keymap.json:56
/ui/keymap-defs/default/x25/command -> default-keymap.json:59
/ui/keymap-defs/default/x2f/command -> default-keymap.json:95
/ui/keymap-defs/default/x31/command -> default-keymap.json:23
/ui/keymap-defs/default/x32/command -> default-keymap.json:26
/ui/keymap-defs/default/x33/command -> default-keymap.json:29
/ui/keymap-defs/default/x34/command -> default-keymap.json:32
/ui/keymap-defs/default/x35/command -> default-keymap.json:35
/ui/keymap-defs/default/x36/command -> default-keymap.json:38
/ui/keymap-defs/default/x37/command -> default-keymap.json:41
/ui/keymap-defs/default/x38/command -> default-keymap.json:44
/ui/keymap-defs/default/x3a/command -> default-keymap.json:89
/ui/keymap-defs/default/x3b/command -> default-keymap.json:98
/ui/keymap-defs/default/x3d/command -> default-keymap.json:83
/ui/keymap-defs/default/x3f/command -> default-keymap.json:164
/ui/keymap-defs/default/x40/command -> default-keymap.json:50
/ui/keymap-defs/default/x45/alt-msg -> default-keymap.json:102
/ui/keymap-defs/default/x45/command -> default-keymap.json:101
/ui/keymap-defs/default/x4e/alt-msg -> default-keymap.json:129
/ui/keymap-defs/default/x4e/command -> default-keymap.json:128
/ui/keymap-defs/default/x50/alt-msg -> default-keymap.json:172
/ui/keymap-defs/default/x50/command -> default-keymap.json:171
/ui/keymap-defs/default/x51/command -> default-keymap.json:185
/ui/keymap-defs/default/x54/alt-msg -> default-keymap.json:137
/ui/keymap-defs/default/x54/command -> default-keymap.json:136
/ui/keymap-defs/default/x55/command -> default-keymap.json:153
/ui/keymap-defs/default/x57/alt-msg -> default-keymap.json:110
/ui/keymap-defs/default/x57/command -> default-keymap.json:109
/ui/keymap-defs/default/x58/command -> default-keymap.json:86
/ui/keymap-defs/default/x5e/command -> default-keymap.json:62
/ui/keymap-defs/default/x60/command -> default-keymap.json:176
/ui/keymap-defs/default/x60/id -> default-keymap.json:175
/ui/keymap-defs/default/x63/alt-msg -> default-keymap.json:118
/ui/keymap-defs/default/x63/command -> default-keymap.json:117
/ui/keymap-defs/default/x65/alt-msg -> default-keymap.json:106
/ui/keymap-defs/default/x65/command -> default-keymap.json:105
/ui/keymap-defs/default/x67/command -> default-keymap.json:121
/ui/keymap-defs/default/x69/alt-msg -> default-keymap.json:168
/ui/keymap-defs/default/x69/command -> default-keymap.json:167
/ui/keymap-defs/default/x6d/alt-msg -> default-keymap.json:125
/ui/keymap-defs/default/x6d/command -> default-keymap.json:124
/ui/keymap-defs/default/x6e/alt-msg -> default-keymap.json:133
/ui/keymap-defs/default/x6e/command -> default-keymap.json:132
/ui/keymap-defs/default/x70/command -> default-keymap.json:140
/ui/keymap-defs/default/x71/command -> default-keymap.json:182
/ui/keymap-defs/default/x75/alt-msg -> default-keymap.json:150
/ui/keymap-defs/default/x75/command -> default-keymap.json:149
/ui/keymap-defs/default/x76/command -> default-keymap.json:179
/ui/keymap-defs/default/x77/alt-msg -> default-keymap.json:114
/ui/keymap-defs/default/x77/command -> default-keymap.json:113
/ui/keymap-defs/default/x78/command -> default-keymap.json:143
/ui/keymap-defs/default/x7b/alt-msg -> default-keymap.json:161
/ui/keymap-defs/default/x7b/command -> default-keymap.json:160
/ui/keymap-defs/default/x7c/command -> default-keymap.json:92
/ui/keymap-defs/default/x7d/alt-msg -> default-keymap.json:157
/ui/keymap-defs/default/x7d/command -> default-keymap.json:156
/ui/keymap-defs/fr/x22/command -> fr-keymap.json:13
/ui/keymap-defs/fr/x26/command -> fr-keymap.json:7
/ui/keymap-defs/fr/x27/command -> fr-keymap.json:16
/ui/keymap-defs/fr/x28/command -> fr-keymap.json:19
/ui/keymap-defs/fr/x2d/command -> fr-keymap.json:22
/ui/keymap-defs/fr/x31/command -> fr-keymap.json:28
/ui/keymap-defs/fr/x32/command -> fr-keymap.json:31
/ui/keymap-defs/fr/x33/command -> fr-keymap.json:34
/ui/keymap-defs/fr/x34/command -> fr-keymap.json:37
/ui/keymap-defs/fr/x35/command -> fr-keymap.json:40
/ui/keymap-defs/fr/x36/command -> fr-keymap.json:43
/ui/keymap-defs/fr/x37/command -> fr-keymap.json:46
/ui/keymap-defs/fr/xc3xa8/command -> fr-keymap.json:25
/ui/keymap-defs/fr/xc3xa9/command -> fr-keymap.json:10
/ui/keymap-defs/sv/x22/command -> sv-keymap.json:7
/ui/keymap-defs/sv/x26/command -> sv-keymap.json:16
/ui/keymap-defs/sv/x2b/command -> sv-keymap.json:22
/ui/keymap-defs/sv/x3d/command -> sv-keymap.json:19
/ui/keymap-defs/sv/x60/command -> sv-keymap.json:26
/ui/keymap-defs/sv/x60/id -> sv-keymap.json:25
/ui/keymap-defs/sv/xc2xa4/command -> sv-keymap.json:10
/ui/keymap-defs/sv/xc2xa7/command -> sv-keymap.json:30
/ui/keymap-defs/sv/xc2xa7/id -> sv-keymap.json:29
/ui/keymap-defs/sv/xe2x82xac/command -> sv-keymap.json:13
/ui/keymap-defs/uk/x22/command -> uk-keymap.json:7
/ui/keymap-defs/uk/xc2xa3/command -> uk-keymap.json:10
/ui/keymap-defs/us/x21/command -> us-keymap.json:31
/ui/keymap-defs/us/x23/command -> us-keymap.json:37
/ui/keymap-defs/us/x24/command -> us-keymap.json:40
/ui/keymap-defs/us/x25/command -> us-keymap.json:43
/ui/keymap-defs/us/x31/command -> us-keymap.json:7
/ui/keymap-defs/us/x32/command -> us-keymap.json:10
/ui/keymap-defs/us/x33/command -> us-keymap.json:13
/ui/keymap-defs/us/x34/command -> us-keymap.json:16
/ui/keymap-defs/us/x35/command -> us-keymap.json:19
/ui/keymap-defs/us/x36/command -> us-keymap.json:22
/ui/keymap-defs/us/x37/command -> us-keymap.json:25
/ui/keymap-defs/us/x38/command -> us-keymap.json:28
/ui/keymap-defs/us/x40/command -> us-keymap.json:34
/ui/keymap-defs/us/x5e/command -> us-keymap.json:46
/ui/mouse/mode -> root-config.json:10
/ui/movement/mode -> root-config.json:13
/ui/theme -> root-config.json:8
/ui/theme-defs/default/highlights/colors/pattern -> default-theme.json:295
/ui/theme-defs/default/highlights/colors/style/color -> default-theme.json:297
/ui/theme-defs/default/highlights/ipv4/pattern -> default-theme.json:301
/ui/theme-defs/default/highlights/ipv4/style/color -> default-theme.json:303
/ui/theme-defs/default/highlights/xml-decl/pattern -> default-theme.json:313
/ui/theme-defs/default/highlights/xml-decl/style/color -> default-theme.json:315
/ui/theme-defs/default/highlights/xml/pattern -> default-theme.json:307
/ui/theme-defs/default/highlights/xml/style/color -> default-theme.json:309
/ui/theme-defs/default/log-level-styles/critical/color -> default-theme.json:287
/ui/theme-defs/default/log-level-styles/error/color -> default-theme.json:284
/ui/theme-defs/default/log-level-styles/fatal/color -> default-theme.json:290
/ui/theme-defs/default/log-level-styles/warning/color -> default-theme.json:281
/ui/theme-defs/default/status-styles/active/background-color -> default-theme.json:254
/ui/theme-defs/default/status-styles/active/color -> default-theme.json:253
/ui/theme-defs/default/status-styles/alert/background-color -> default-theme.json:250
/ui/theme-defs/default/status-styles/alert/color -> default-theme.json:249
/ui/theme-defs/default/status-styles/disabled-title/background-color -> default-theme.json:233
/ui/theme-defs/default/status-styles/disabled-title/bold -> default-theme.json:234
/ui/theme-defs/default/status-styles/disabled-title/color -> default-theme.json:232
/ui/theme-defs/default/status-styles/hotkey/bold -> default-theme.json:276
/ui/theme-defs/default/status-styles/hotkey/color -> default-theme.json:274
/ui/theme-defs/default/status-styles/hotkey/underline -> default-theme.json:275
/ui/theme-defs/default/status-styles/inactive-alert/background-color -> default-theme.json:266
/ui/theme-defs/default/status-styles/inactive-alert/color -> default-theme.json:265
/ui/theme-defs/default/status-styles/inactive/background-color -> default-theme.json:262
/ui/theme-defs/default/status-styles/inactive/color -> default-theme.json:261
/ui/theme-defs/default/status-styles/info/background-color -> default-theme.json:258
/ui/theme-defs/default/status-styles/info/color -> default-theme.json:257
/ui/theme-defs/default/status-styles/subtitle/background-color -> default-theme.json:238
/ui/theme-defs/default/status-styles/subtitle/color -> default-theme.json:237
/ui/theme-defs/default/status-styles/text/background-color -> default-theme.json:242
/ui/theme-defs/default/status-styles/text/color -> default-theme.json:241
/ui/theme-defs/default/status-styles/title-hotkey/background-color -> default-theme.json:270
/ui/theme-defs/default/status-styles/title-hotkey/color -> default-theme.json:269
/ui/theme-defs/default/status-styles/title-hotkey/underline -> default-theme.json:271
/ui/theme-defs/default/status-styles/title/background-color -> default-theme.json:228
/ui/theme-defs/default/status-styles/title/bold -> default-theme.json:229
/ui/theme-defs/default/status-styles/title/color -> default-theme.json:227
/ui/theme-defs/default/status-styles/warn/background-color -> default-theme.json:246
/ui/theme-defs/default/status-styles/warn/color -> default-theme.json:245
/ui/theme-defs/default/styles/adjusted-time/color -> default-theme.json:55
/ui/theme-defs/default/styles/alt-text/background-color -> default-theme.json:22
/ui/theme-defs/default/styles/breadcrumb/bold -> default-theme.json:114
/ui/theme-defs/default/styles/breadcrumb/color -> default-theme.json:113
/ui/theme-defs/default/styles/cursor-line/background-color -> default-theme.json:46
/ui/theme-defs/default/styles/cursor-line/bold -> default-theme.json:47
/ui/theme-defs/default/styles/cursor-line/color -> default-theme.json:45
/ui/theme-defs/default/styles/cursor-line/underline -> default-theme.json:48
/ui/theme-defs/default/styles/disabled-cursor-line/background-color -> default-theme.json:52
/ui/theme-defs/default/styles/disabled-cursor-line/color -> default-theme.json:51
/ui/theme-defs/default/styles/disabled-focused/background-color -> default-theme.json:83
/ui/theme-defs/default/styles/disabled-focused/color -> default-theme.json:82
/ui/theme-defs/default/styles/error/bold -> default-theme.json:34
/ui/theme-defs/default/styles/error/color -> default-theme.json:33
/ui/theme-defs/default/styles/file-offset/color -> default-theme.json:64
/ui/theme-defs/default/styles/focused/background-color -> default-theme.json:79
/ui/theme-defs/default/styles/focused/color -> default-theme.json:78
/ui/theme-defs/default/styles/footnote-border/background-color -> default-theme.json:131
/ui/theme-defs/default/styles/footnote-border/color -> default-theme.json:130
/ui/theme-defs/default/styles/footnote-text/background-color -> default-theme.json:135
/ui/theme-defs/default/styles/footnote-text/color -> default-theme.json:134
/ui/theme-defs/default/styles/h1/underline -> default-theme.json:86
/ui/theme-defs/default/styles/h2/underline -> default-theme.json:89
/ui/theme-defs/default/styles/h3/underline -> default-theme.json:92
/ui/theme-defs/default/styles/h4/underline -> default-theme.json:95
/ui/theme-defs/default/styles/h5/underline -> default-theme.json:98
/ui/theme-defs/default/styles/h6/underline -> default-theme.json:101
/ui/theme-defs/default/styles/hidden/bold -> default-theme.json:42
/ui/theme-defs/default/styles/hidden/color -> default-theme.json:41
/ui/theme-defs/default/styles/hr/color -> default-theme.json:104
/ui/theme-defs/default/styles/hyperlink/underline -> default-theme.json:107
/ui/theme-defs/default/styles/identifier/background-color -> default-theme.json:18
/ui/theme-defs/default/styles/identifier/color -> default-theme.json:19
/ui/theme-defs/default/styles/indent-guide/color -> default-theme.json:141
/ui/theme-defs/default/styles/info/bold -> default-theme.json:30
/ui/theme-defs/default/styles/info/color -> default-theme.json:29
/ui/theme-defs/default/styles/invalid-msg/color -> default-theme.json:67
/ui/theme-defs/default/styles/list-glyph/color -> default-theme.json:110
/ui/theme-defs/default/styles/offset-time/color -> default-theme.json:61
/ui/theme-defs/default/styles/ok/bold -> default-theme.json:26
/ui/theme-defs/default/styles/ok/color -> default-theme.json:25
/ui/theme-defs/default/styles/popup/background-color -> default-theme.json:71
/ui/theme-defs/default/styles/popup/color -> default-theme.json:70
/ui/theme-defs/default/styles/quote-border/background-color -> default-theme.json:124
/ui/theme-defs/default/styles/quote-border/color -> default-theme.json:123
/ui/theme-defs/default/styles/quoted-text/background-color -> default-theme.json:127
/ui/theme-defs/default/styles/scrollbar/background-color -> default-theme.json:75
/ui/theme-defs/default/styles/scrollbar/color -> default-theme.json:74
/ui/theme-defs/default/styles/selected-text/background-color -> default-theme.json:15
/ui/theme-defs/default/styles/skewed-time/color -> default-theme.json:58
/ui/theme-defs/default/styles/snippet-border/color -> default-theme.json:138
/ui/theme-defs/default/styles/table-border/color -> default-theme.json:117
/ui/theme-defs/default/styles/table-header/bold -> default-theme.json:120
/ui/theme-defs/default/styles/text/background-color -> default-theme.json:12
/ui/theme-defs/default/styles/text/color -> default-theme.json:11
/ui/theme-defs/default/styles/warning/bold -> default-theme.json:38
/ui/theme-defs/default/styles/warning/color -> default-theme.json:37
/ui/theme-defs/default/syntax-styles/ascii-control/color -> default-theme.json:207
/ui/theme-defs/default/syntax-styles/code-border/background-color -> default-theme.json:155
/ui/theme-defs/default/syntax-styles/code-border/color -> default-theme.json:154
/ui/theme-defs/default/syntax-styles/comment/color -> default-theme.json:165
/ui/theme-defs/default/syntax-styles/diff-add/color -> default-theme.json:186
/ui/theme-defs/default/syntax-styles/diff-delete/color -> default-theme.json:183
/ui/theme-defs/default/syntax-styles/diff-section/color -> default-theme.json:189
/ui/theme-defs/default/syntax-styles/doc-directive/color -> default-theme.json:168
/ui/theme-defs/default/syntax-styles/file/color -> default-theme.json:201
/ui/theme-defs/default/syntax-styles/function/color -> default-theme.json:216
/ui/theme-defs/default/syntax-styles/inline-code/background-color -> default-theme.json:147
/ui/theme-defs/default/syntax-styles/inline-code/color -> default-theme.json:146
/ui/theme-defs/default/syntax-styles/keyword/color -> default-theme.json:158
/ui/theme-defs/default/syntax-styles/non-ascii/color -> default-theme.json:210
/ui/theme-defs/default/syntax-styles/null/color -> default-theme.json:204
/ui/theme-defs/default/syntax-styles/number/bold -> default-theme.json:213
/ui/theme-defs/default/syntax-styles/quoted-code/background-color -> default-theme.json:151
/ui/theme-defs/default/syntax-styles/quoted-code/color -> default-theme.json:150
/ui/theme-defs/default/syntax-styles/re-repeat/color -> default-theme.json:180
/ui/theme-defs/default/syntax-styles/re-special/color -> default-theme.json:177
/ui/theme-defs/default/syntax-styles/separators-references-accessors/color -> default-theme.json:219
/ui/theme-defs/default/syntax-styles/spectrogram-high/background-color -> default-theme.json:198
/ui/theme-defs/default/syntax-styles/spectrogram-low/background-color -> default-theme.json:192
/ui/theme-defs/default/syntax-styles/spectrogram-medium/background-color -> default-theme.json:195
/ui/theme-defs/default/syntax-styles/string/bold -> default-theme.json:162
/ui/theme-defs/default/syntax-styles/string/color -> default-theme.json:161
/ui/theme-defs/default/syntax-styles/symbol/color -> default-theme.json:174
/ui/theme-defs/default/syntax-styles/type/color -> default-theme.json:222
/ui/theme-defs/default/syntax-styles/variable/color -> default-theme.json:171
/ui/theme-defs/default/vars/semantic_highlight_color -> default-theme.json:7
/ui/theme-defs/dracula/log-level-styles/critical/color -> dracula.json:303
/ui/theme-defs/dracula/log-level-styles/error/color -> dracula.json:300
/ui/theme-defs/dracula/log-level-styles/fatal/color -> dracula.json:306
/ui/theme-defs/dracula/log-level-styles/warning/color -> dracula.json:297
/ui/theme-defs/dracula/status-styles/active/background-color -> dracula.json:281
/ui/theme-defs/dracula/status-styles/active/color -> dracula.json:280
/ui/theme-defs/dracula/status-styles/alert/background-color -> dracula.json:277
/ui/theme-defs/dracula/status-styles/alert/color -> dracula.json:276
/ui/theme-defs/dracula/status-styles/disabled-title/background-color -> dracula.json:241
/ui/theme-defs/dracula/status-styles/disabled-title/bold -> dracula.json:242
/ui/theme-defs/dracula/status-styles/disabled-title/color -> dracula.json:240
/ui/theme-defs/dracula/status-styles/hotkey/color -> dracula.json:264
/ui/theme-defs/dracula/status-styles/hotkey/underline -> dracula.json:265
/ui/theme-defs/dracula/status-styles/inactive-alert/background-color -> dracula.json:289
/ui/theme-defs/dracula/status-styles/inactive-alert/color -> dracula.json:288
/ui/theme-defs/dracula/status-styles/inactive/background-color -> dracula.json:285
/ui/theme-defs/dracula/status-styles/inactive/color -> dracula.json:284
/ui/theme-defs/dracula/status-styles/info/background-color -> dracula.json:256
/ui/theme-defs/dracula/status-styles/info/color -> dracula.json:255
/ui/theme-defs/dracula/status-styles/subtitle/background-color -> dracula.json:251
/ui/theme-defs/dracula/status-styles/subtitle/bold -> dracula.json:252
/ui/theme-defs/dracula/status-styles/subtitle/color -> dracula.json:250
/ui/theme-defs/dracula/status-styles/suggestion/color -> dracula.json:292
/ui/theme-defs/dracula/status-styles/text/background-color -> dracula.json:269
/ui/theme-defs/dracula/status-styles/text/color -> dracula.json:268
/ui/theme-defs/dracula/status-styles/title-hotkey/background-color -> dracula.json:260
/ui/theme-defs/dracula/status-styles/title-hotkey/color -> dracula.json:259
/ui/theme-defs/dracula/status-styles/title-hotkey/underline -> dracula.json:261
/ui/theme-defs/dracula/status-styles/title/background-color -> dracula.json:246
/ui/theme-defs/dracula/status-styles/title/bold -> dracula.json:247
/ui/theme-defs/dracula/status-styles/title/color -> dracula.json:245
/ui/theme-defs/dracula/status-styles/warn/background-color -> dracula.json:273
/ui/theme-defs/dracula/status-styles/warn/color -> dracula.json:272
/ui/theme-defs/dracula/styles/adjusted-time/color -> dracula.json:64
/ui/theme-defs/dracula/styles/alt-text/background-color -> dracula.json:32
/ui/theme-defs/dracula/styles/breadcrumb/bold -> dracula.json:125
/ui/theme-defs/dracula/styles/breadcrumb/color -> dracula.json:124
/ui/theme-defs/dracula/styles/cursor-line/background-color -> dracula.json:56
/ui/theme-defs/dracula/styles/cursor-line/bold -> dracula.json:57
/ui/theme-defs/dracula/styles/cursor-line/color -> dracula.json:55
/ui/theme-defs/dracula/styles/disabled-cursor-line/background-color -> dracula.json:61
/ui/theme-defs/dracula/styles/disabled-cursor-line/color -> dracula.json:60
/ui/theme-defs/dracula/styles/disabled-focused/background-color -> dracula.json:84
/ui/theme-defs/dracula/styles/disabled-focused/color -> dracula.json:83
/ui/theme-defs/dracula/styles/error/bold -> dracula.json:44
/ui/theme-defs/dracula/styles/error/color -> dracula.json:43
/ui/theme-defs/dracula/styles/file-offset/color -> dracula.json:73
/ui/theme-defs/dracula/styles/focused/background-color -> dracula.json:80
/ui/theme-defs/dracula/styles/focused/color -> dracula.json:79
/ui/theme-defs/dracula/styles/footnote-border/background-color -> dracula.json:143
/ui/theme-defs/dracula/styles/footnote-border/color -> dracula.json:142
/ui/theme-defs/dracula/styles/footnote-text/background-color -> dracula.json:147
/ui/theme-defs/dracula/styles/footnote-text/color -> dracula.json:146
/ui/theme-defs/dracula/styles/h1/bold -> dracula.json:96
/ui/theme-defs/dracula/styles/h1/color -> dracula.json:95
/ui/theme-defs/dracula/styles/h2/color -> dracula.json:99
/ui/theme-defs/dracula/styles/h2/underline -> dracula.json:100
/ui/theme-defs/dracula/styles/h3/color -> dracula.json:103
/ui/theme-defs/dracula/styles/h4/underline -> dracula.json:106
/ui/theme-defs/dracula/styles/h5/underline -> dracula.json:109
/ui/theme-defs/dracula/styles/h6/underline -> dracula.json:112
/ui/theme-defs/dracula/styles/hidden/bold -> dracula.json:52
/ui/theme-defs/dracula/styles/hidden/color -> dracula.json:51
/ui/theme-defs/dracula/styles/hr/color -> dracula.json:115
/ui/theme-defs/dracula/styles/hyperlink/underline -> dracula.json:118
/ui/theme-defs/dracula/styles/identifier/color -> dracula.json:22
/ui/theme-defs/dracula/styles/indent-guide/color -> dracula.json:153
/ui/theme-defs/dracula/styles/info/bold -> dracula.json:40
/ui/theme-defs/dracula/styles/info/color -> dracula.json:39
/ui/theme-defs/dracula/styles/invalid-msg/color -> dracula.json:76
/ui/theme-defs/dracula/styles/list-glyph/color -> dracula.json:121
/ui/theme-defs/dracula/styles/offset-time/color -> dracula.json:70
/ui/theme-defs/dracula/styles/ok/bold -> dracula.json:36
/ui/theme-defs/dracula/styles/ok/color -> dracula.json:35
/ui/theme-defs/dracula/styles/popup/background-color -> dracula.json:88
/ui/theme-defs/dracula/styles/popup/color -> dracula.json:87
/ui/theme-defs/dracula/styles/quote-border/background-color -> dracula.json:135
/ui/theme-defs/dracula/styles/quote-border/color -> dracula.json:134
/ui/theme-defs/dracula/styles/quoted-text/background-color -> dracula.json:139
/ui/theme-defs/dracula/styles/quoted-text/color -> dracula.json:138
/ui/theme-defs/dracula/styles/scrollbar/background-color -> dracula.json:92
/ui/theme-defs/dracula/styles/scrollbar/color -> dracula.json:91
/ui/theme-defs/dracula/styles/selected-text/background-color -> dracula.json:29
/ui/theme-defs/dracula/styles/skewed-time/color -> dracula.json:67
/ui/theme-defs/dracula/styles/snippet-border/color -> dracula.json:150
/ui/theme-defs/dracula/styles/table-border/color -> dracula.json:128
/ui/theme-defs/dracula/styles/table-header/bold -> dracula.json:131
/ui/theme-defs/dracula/styles/text/background-color -> dracula.json:26
/ui/theme-defs/dracula/styles/text/color -> dracula.json:25
/ui/theme-defs/dracula/styles/warning/bold -> dracula.json:48
/ui/theme-defs/dracula/styles/warning/color -> dracula.json:47
/ui/theme-defs/dracula/syntax-styles/ascii-control/color -> dracula.json:220
/ui/theme-defs/dracula/syntax-styles/code-border/background-color -> dracula.json:167
/ui/theme-defs/dracula/syntax-styles/code-border/color -> dracula.json:166
/ui/theme-defs/dracula/syntax-styles/comment/color -> dracula.json:178
/ui/theme-defs/dracula/syntax-styles/diff-add/color -> dracula.json:199
/ui/theme-defs/dracula/syntax-styles/diff-delete/color -> dracula.json:196
/ui/theme-defs/dracula/syntax-styles/diff-section/color -> dracula.json:202
/ui/theme-defs/dracula/syntax-styles/doc-directive/color -> dracula.json:181
/ui/theme-defs/dracula/syntax-styles/file/color -> dracula.json:214
/ui/theme-defs/dracula/syntax-styles/function/color -> dracula.json:229
/ui/theme-defs/dracula/syntax-styles/inline-code/background-color -> dracula.json:159
/ui/theme-defs/dracula/syntax-styles/inline-code/color -> dracula.json:158
/ui/theme-defs/dracula/syntax-styles/keyword/bold -> dracula.json:171
/ui/theme-defs/dracula/syntax-styles/keyword/color -> dracula.json:170
/ui/theme-defs/dracula/syntax-styles/non-ascii/color -> dracula.json:223
/ui/theme-defs/dracula/syntax-styles/null/color -> dracula.json:217
/ui/theme-defs/dracula/syntax-styles/number/bold -> dracula.json:226
/ui/theme-defs/dracula/syntax-styles/quoted-code/background-color -> dracula.json:163
/ui/theme-defs/dracula/syntax-styles/quoted-code/color -> dracula.json:162
/ui/theme-defs/dracula/syntax-styles/re-repeat/color -> dracula.json:193
/ui/theme-defs/dracula/syntax-styles/re-special/color -> dracula.json:190
/ui/theme-defs/dracula/syntax-styles/separators-references-accessors/color -> dracula.json:232
/ui/theme-defs/dracula/syntax-styles/spectrogram-high/background-color -> dracula.json:211
/ui/theme-defs/dracula/syntax-styles/spectrogram-low/background-color -> dracula.json:205
/ui/theme-defs/dracula/syntax-styles/spectrogram-medium/background-color -> dracula.json:208
/ui/theme-defs/dracula/syntax-styles/string/bold -> dracula.json:175
/ui/theme-defs/dracula/syntax-styles/string/color -> dracula.json:174
/ui/theme-defs/dracula/syntax-styles/symbol/color -> dracula.json:187
/ui/theme-defs/dracula/syntax-styles/type/color -> dracula.json:235
/ui/theme-defs/dracula/syntax-styles/variable/color -> dracula.json:184
/ui/theme-defs/dracula/vars/black -> dracula.json:7
/ui/theme-defs/dracula/vars/blue -> dracula.json:11
/ui/theme-defs/dracula/vars/cyan -> dracula.json:13
/ui/theme-defs/dracula/vars/green -> dracula.json:9
/ui/theme-defs/dracula/vars/magenta -> dracula.json:12
/ui/theme-defs/dracula/vars/orange -> dracula.json:15
/ui/theme-defs/dracula/vars/pink -> dracula.json:17
/ui/theme-defs/dracula/vars/purple -> dracula.json:16
/ui/theme-defs/dracula/vars/red -> dracula.json:8
/ui/theme-defs/dracula/vars/semantic_highlight_color -> dracula.json:18
/ui/theme-defs/dracula/vars/white -> dracula.json:14
/ui/theme-defs/dracula/vars/yellow -> dracula.json:10
/ui/theme-defs/eldar/log-level-styles/critical/color -> eldar.json:299
/ui/theme-defs/eldar/log-level-styles/error/color -> eldar.json:296
/ui/theme-defs/eldar/log-level-styles/fatal/color -> eldar.json:302
/ui/theme-defs/eldar/log-level-styles/warning/color -> eldar.json:293
/ui/theme-defs/eldar/status-styles/active/background-color -> eldar.json:264
/ui/theme-defs/eldar/status-styles/active/color -> eldar.json:263
/ui/theme-defs/eldar/status-styles/alert/background-color -> eldar.json:260
/ui/theme-defs/eldar/status-styles/alert/color -> eldar.json:259
/ui/theme-defs/eldar/status-styles/disabled-title/background-color -> eldar.json:237
/ui/theme-defs/eldar/status-styles/disabled-title/bold -> eldar.json:238
/ui/theme-defs/eldar/status-styles/disabled-title/color -> eldar.json:236
/ui/theme-defs/eldar/status-styles/hotkey/color -> eldar.json:276
/ui/theme-defs/eldar/status-styles/hotkey/underline -> eldar.json:277
/ui/theme-defs/eldar/status-styles/inactive-alert/background-color -> eldar.json:285
/ui/theme-defs/eldar/status-styles/inactive-alert/color -> eldar.json:284
/ui/theme-defs/eldar/status-styles/inactive/background-color -> eldar.json:281
/ui/theme-defs/eldar/status-styles/inactive/color -> eldar.json:280
/ui/theme-defs/eldar/status-styles/info/background-color -> eldar.json:268
/ui/theme-defs/eldar/status-styles/info/color -> eldar.json:267
/ui/theme-defs/eldar/status-styles/subtitle/background-color -> eldar.json:247
/ui/theme-defs/eldar/status-styles/subtitle/bold -> eldar.json:248
/ui/theme-defs/eldar/status-styles/subtitle/color -> eldar.json:246
/ui/theme-defs/eldar/status-styles/suggestion/color -> eldar.json:288
/ui/theme-defs/eldar/status-styles/text/background-color -> eldar.json:252
/ui/theme-defs/eldar/status-styles/text/color -> eldar.json:251
/ui/theme-defs/eldar/status-styles/title-hotkey/background-color -> eldar.json:272
/ui/theme-defs/eldar/status-styles/title-hotkey/color -> eldar.json:271
/ui/theme-defs/eldar/status-styles/title-hotkey/underline -> eldar.json:273
/ui/theme-defs/eldar/status-styles/title/background-color -> eldar.json:242
/ui/theme-defs/eldar/status-styles/title/bold -> eldar.json:243
/ui/theme-defs/eldar/status-styles/title/color -> eldar.json:241
/ui/theme-defs/eldar/status-styles/warn/background-color -> eldar.json:256
/ui/theme-defs/eldar/status-styles/warn/color -> eldar.json:255
/ui/theme-defs/eldar/styles/adjusted-time/color -> eldar.json:64
/ui/theme-defs/eldar/styles/alt-text/bold -> eldar.json:31
/ui/theme-defs/eldar/styles/breadcrumb/bold -> eldar.json:123
/ui/theme-defs/eldar/styles/breadcrumb/color -> eldar.json:122
/ui/theme-defs/eldar/styles/cursor-line/background-color -> eldar.json:55
/ui/theme-defs/eldar/styles/cursor-line/bold -> eldar.json:56
/ui/theme-defs/eldar/styles/cursor-line/color -> eldar.json:54
/ui/theme-defs/eldar/styles/cursor-line/underline -> eldar.json:57
/ui/theme-defs/eldar/styles/disabled-cursor-line/background-color -> eldar.json:61
/ui/theme-defs/eldar/styles/disabled-cursor-line/color -> eldar.json:60
/ui/theme-defs/eldar/styles/disabled-focused/background-color -> eldar.json:84
/ui/theme-defs/eldar/styles/disabled-focused/color -> eldar.json:83
/ui/theme-defs/eldar/styles/error/bold -> eldar.json:43
/ui/theme-defs/eldar/styles/error/color -> eldar.json:42
/ui/theme-defs/eldar/styles/file-offset/color -> eldar.json:73
/ui/theme-defs/eldar/styles/focused/background-color -> eldar.json:80
/ui/theme-defs/eldar/styles/focused/color -> eldar.json:79
/ui/theme-defs/eldar/styles/footnote-border/background-color -> eldar.json:140
/ui/theme-defs/eldar/styles/footnote-border/color -> eldar.json:139
/ui/theme-defs/eldar/styles/footnote-text/background-color -> eldar.json:144
/ui/theme-defs/eldar/styles/footnote-text/color -> eldar.json:143
/ui/theme-defs/eldar/styles/h1/underline -> eldar.json:95
/ui/theme-defs/eldar/styles/h2/underline -> eldar.json:98
/ui/theme-defs/eldar/styles/h3/underline -> eldar.json:101
/ui/theme-defs/eldar/styles/h4/underline -> eldar.json:104
/ui/theme-defs/eldar/styles/h5/underline -> eldar.json:107
/ui/theme-defs/eldar/styles/h6/underline -> eldar.json:110
/ui/theme-defs/eldar/styles/hidden/bold -> eldar.json:51
/ui/theme-defs/eldar/styles/hidden/color -> eldar.json:50
/ui/theme-defs/eldar/styles/hr/color -> eldar.json:113
/ui/theme-defs/eldar/styles/hyperlink/underline -> eldar.json:116
/ui/theme-defs/eldar/styles/identifier/background-color -> eldar.json:20
/ui/theme-defs/eldar/styles/identifier/color -> eldar.json:21
/ui/theme-defs/eldar/styles/indent-guide/color -> eldar.json:150
/ui/theme-defs/eldar/styles/info/bold -> eldar.json:39
/ui/theme-defs/eldar/styles/info/color -> eldar.json:38
/ui/theme-defs/eldar/styles/invalid-msg/color -> eldar.json:76
/ui/theme-defs/eldar/styles/list-glyph/color -> eldar.json:119
/ui/theme-defs/eldar/styles/offset-time/color -> eldar.json:70
/ui/theme-defs/eldar/styles/ok/bold -> eldar.json:35
/ui/theme-defs/eldar/styles/ok/color -> eldar.json:34
/ui/theme-defs/eldar/styles/popup/background-color -> eldar.json:88
/ui/theme-defs/eldar/styles/popup/color -> eldar.json:87
/ui/theme-defs/eldar/styles/quote-border/background-color -> eldar.json:133
/ui/theme-defs/eldar/styles/quote-border/color -> eldar.json:132
/ui/theme-defs/eldar/styles/quoted-text/background-color -> eldar.json:136
/ui/theme-defs/eldar/styles/scrollbar/background-color -> eldar.json:92
/ui/theme-defs/eldar/styles/scrollbar/color -> eldar.json:91
/ui/theme-defs/eldar/styles/selected-text/background-color -> eldar.json:28
/ui/theme-defs/eldar/styles/skewed-time/color -> eldar.json:67
/ui/theme-defs/eldar/styles/snippet-border/color -> eldar.json:147
/ui/theme-defs/eldar/styles/table-border/color -> eldar.json:126
/ui/theme-defs/eldar/styles/table-header/bold -> eldar.json:129
/ui/theme-defs/eldar/styles/text/background-color -> eldar.json:25
/ui/theme-defs/eldar/styles/text/color -> eldar.json:24
/ui/theme-defs/eldar/styles/warning/bold -> eldar.json:47
/ui/theme-defs/eldar/styles/warning/color -> eldar.json:46
/ui/theme-defs/eldar/syntax-styles/ascii-control/color -> eldar.json:219
/ui/theme-defs/eldar/syntax-styles/code-border/background-color -> eldar.json:164
/ui/theme-defs/eldar/syntax-styles/code-border/color -> eldar.json:163
/ui/theme-defs/eldar/syntax-styles/comment/color -> eldar.json:174
/ui/theme-defs/eldar/syntax-styles/diff-add/color -> eldar.json:198
/ui/theme-defs/eldar/syntax-styles/diff-delete/color -> eldar.json:195
/ui/theme-defs/eldar/syntax-styles/diff-section/color -> eldar.json:201
/ui/theme-defs/eldar/syntax-styles/doc-directive/color -> eldar.json:177
/ui/theme-defs/eldar/syntax-styles/file/color -> eldar.json:213
/ui/theme-defs/eldar/syntax-styles/function/color -> eldar.json:225
/ui/theme-defs/eldar/syntax-styles/inline-code/background-color -> eldar.json:156
/ui/theme-defs/eldar/syntax-styles/inline-code/color -> eldar.json:155
/ui/theme-defs/eldar/syntax-styles/keyword/color -> eldar.json:167
/ui/theme-defs/eldar/syntax-styles/non-ascii/color -> eldar.json:222
/ui/theme-defs/eldar/syntax-styles/null/color -> eldar.json:216
/ui/theme-defs/eldar/syntax-styles/number/color -> eldar.json:180
/ui/theme-defs/eldar/syntax-styles/quoted-code/background-color -> eldar.json:160
/ui/theme-defs/eldar/syntax-styles/quoted-code/color -> eldar.json:159
/ui/theme-defs/eldar/syntax-styles/re-repeat/color -> eldar.json:192
/ui/theme-defs/eldar/syntax-styles/re-special/color -> eldar.json:189
/ui/theme-defs/eldar/syntax-styles/separators-references-accessors/color -> eldar.json:228
/ui/theme-defs/eldar/syntax-styles/spectrogram-high/background-color -> eldar.json:210
/ui/theme-defs/eldar/syntax-styles/spectrogram-low/background-color -> eldar.json:204
/ui/theme-defs/eldar/syntax-styles/spectrogram-medium/background-color -> eldar.json:207
/ui/theme-defs/eldar/syntax-styles/string/bold -> eldar.json:171
/ui/theme-defs/eldar/syntax-styles/string/color -> eldar.json:170
/ui/theme-defs/eldar/syntax-styles/symbol/color -> eldar.json:186
/ui/theme-defs/eldar/syntax-styles/type/color -> eldar.json:231
/ui/theme-defs/eldar/syntax-styles/variable/color -> eldar.json:183
/ui/theme-defs/eldar/vars/black -> eldar.json:7
/ui/theme-defs/eldar/vars/blue -> eldar.json:11
/ui/theme-defs/eldar/vars/cyan -> eldar.json:12
/ui/theme-defs/eldar/vars/green -> eldar.json:13
/ui/theme-defs/eldar/vars/magenta -> eldar.json:10
/ui/theme-defs/eldar/vars/orange -> eldar.json:15
/ui/theme-defs/eldar/vars/red -> eldar.json:9
/ui/theme-defs/eldar/vars/semantic_highlight_color -> eldar.json:16
/ui/theme-defs/eldar/vars/white -> eldar.json:14
/ui/theme-defs/eldar/vars/yellow -> eldar.json:8
/ui/theme-defs/grayscale/log-level-styles/critical/color -> grayscale.json:235
/ui/theme-defs/grayscale/log-level-styles/error/color -> grayscale.json:232
/ui/theme-defs/grayscale/log-level-styles/fatal/color -> grayscale.json:238
/ui/theme-defs/grayscale/log-level-styles/warning/color -> grayscale.json:229
/ui/theme-defs/grayscale/status-styles/active/background-color -> grayscale.json:209
/ui/theme-defs/grayscale/status-styles/active/color -> grayscale.json:208
/ui/theme-defs/grayscale/status-styles/alert/background-color -> grayscale.json:205
/ui/theme-defs/grayscale/status-styles/alert/color -> grayscale.json:204
/ui/theme-defs/grayscale/status-styles/disabled-title/background-color -> grayscale.json:173
/ui/theme-defs/grayscale/status-styles/disabled-title/bold -> grayscale.json:174
/ui/theme-defs/grayscale/status-styles/disabled-title/color -> grayscale.json:172
/ui/theme-defs/grayscale/status-styles/hotkey/color -> grayscale.json:192
/ui/theme-defs/grayscale/status-styles/hotkey/underline -> grayscale.json:193
/ui/theme-defs/grayscale/status-styles/inactive-alert/background-color -> grayscale.json:221
/ui/theme-defs/grayscale/status-styles/inactive-alert/color -> grayscale.json:220
/ui/theme-defs/grayscale/status-styles/inactive/background-color -> grayscale.json:217
/ui/theme-defs/grayscale/status-styles/inactive/color -> grayscale.json:216
/ui/theme-defs/grayscale/status-styles/info/background-color -> grayscale.json:213
/ui/theme-defs/grayscale/status-styles/info/color -> grayscale.json:212
/ui/theme-defs/grayscale/status-styles/subtitle/background-color -> grayscale.json:183
/ui/theme-defs/grayscale/status-styles/subtitle/bold -> grayscale.json:184
/ui/theme-defs/grayscale/status-styles/subtitle/color -> grayscale.json:182
/ui/theme-defs/grayscale/status-styles/suggestion/color -> grayscale.json:224
/ui/theme-defs/grayscale/status-styles/text/background-color -> grayscale.json:197
/ui/theme-defs/grayscale/status-styles/text/color -> grayscale.json:196
/ui/theme-defs/grayscale/status-styles/title-hotkey/background-color -> grayscale.json:188
/ui/theme-defs/grayscale/status-styles/title-hotkey/color -> grayscale.json:187
/ui/theme-defs/grayscale/status-styles/title-hotkey/underline -> grayscale.json:189
/ui/theme-defs/grayscale/status-styles/title/background-color -> grayscale.json:178
/ui/theme-defs/grayscale/status-styles/title/bold -> grayscale.json:179
/ui/theme-defs/grayscale/status-styles/title/color -> grayscale.json:177
/ui/theme-defs/grayscale/status-styles/warn/background-color -> grayscale.json:201
/ui/theme-defs/grayscale/status-styles/warn/color -> grayscale.json:200
/ui/theme-defs/grayscale/styles/adjusted-time/color -> grayscale.json:61
/ui/theme-defs/grayscale/styles/alt-text/bold -> grayscale.json:28
/ui/theme-defs/grayscale/styles/breadcrumb/bold -> grayscale.json:120
/ui/theme-defs/grayscale/styles/breadcrumb/color -> grayscale.json:119
/ui/theme-defs/grayscale/styles/cursor-line/background-color -> grayscale.json:52
/ui/theme-defs/grayscale/styles/cursor-line/bold -> grayscale.json:53
/ui/theme-defs/grayscale/styles/cursor-line/color -> grayscale.json:51
/ui/theme-defs/grayscale/styles/cursor-line/underline -> grayscale.json:54
/ui/theme-defs/grayscale/styles/disabled-cursor-line/background-color -> grayscale.json:58
/ui/theme-defs/grayscale/styles/disabled-cursor-line/color -> grayscale.json:57
/ui/theme-defs/grayscale/styles/disabled-focused/background-color -> grayscale.json:81
/ui/theme-defs/grayscale/styles/disabled-focused/color -> grayscale.json:80
/ui/theme-defs/grayscale/styles/error/bold -> grayscale.json:40
/ui/theme-defs/grayscale/styles/error/color -> grayscale.json:39
/ui/theme-defs/grayscale/styles/file-offset/color -> grayscale.json:70
/ui/theme-defs/grayscale/styles/focused/background-color -> grayscale.json:77
/ui/theme-defs/grayscale/styles/focused/color -> grayscale.json:76
/ui/theme-defs/grayscale/styles/footnote-border/background-color -> grayscale.json:137
/ui/theme-defs/grayscale/styles/footnote-border/color -> grayscale.json:136
/ui/theme-defs/grayscale/styles/footnote-text/background-color -> grayscale.json:141
/ui/theme-defs/grayscale/styles/footnote-text/color -> grayscale.json:140
/ui/theme-defs/grayscale/styles/h1/underline -> grayscale.json:92
/ui/theme-defs/grayscale/styles/h2/underline -> grayscale.json:95
/ui/theme-defs/grayscale/styles/h3/underline -> grayscale.json:98
/ui/theme-defs/grayscale/styles/h4/underline -> grayscale.json:101
/ui/theme-defs/grayscale/styles/h5/underline -> grayscale.json:104
/ui/theme-defs/grayscale/styles/h6/underline -> grayscale.json:107
/ui/theme-defs/grayscale/styles/hidden/bold -> grayscale.json:48
/ui/theme-defs/grayscale/styles/hidden/color -> grayscale.json:47
/ui/theme-defs/grayscale/styles/hr/color -> grayscale.json:110
/ui/theme-defs/grayscale/styles/hyperlink/underline -> grayscale.json:113
/ui/theme-defs/grayscale/styles/identifier/background-color -> grayscale.json:19
/ui/theme-defs/grayscale/styles/identifier/bold -> grayscale.json:21
/ui/theme-defs/grayscale/styles/identifier/color -> grayscale.json:20
/ui/theme-defs/grayscale/styles/indent-guide/color -> grayscale.json:147
/ui/theme-defs/grayscale/styles/info/bold -> grayscale.json:36
/ui/theme-defs/grayscale/styles/info/color -> grayscale.json:35
/ui/theme-defs/grayscale/styles/invalid-msg/color -> grayscale.json:73
/ui/theme-defs/grayscale/styles/list-glyph/color -> grayscale.json:116
/ui/theme-defs/grayscale/styles/offset-time/color -> grayscale.json:67
/ui/theme-defs/grayscale/styles/ok/bold -> grayscale.json:32
/ui/theme-defs/grayscale/styles/ok/color -> grayscale.json:31
/ui/theme-defs/grayscale/styles/popup/background-color -> grayscale.json:85
/ui/theme-defs/grayscale/styles/popup/color -> grayscale.json:84
/ui/theme-defs/grayscale/styles/quote-border/background-color -> grayscale.json:130
/ui/theme-defs/grayscale/styles/quote-border/color -> grayscale.json:129
/ui/theme-defs/grayscale/styles/quoted-text/background-color -> grayscale.json:133
/ui/theme-defs/grayscale/styles/scrollbar/background-color -> grayscale.json:89
/ui/theme-defs/grayscale/styles/scrollbar/color -> grayscale.json:88
/ui/theme-defs/grayscale/styles/skewed-time/color -> grayscale.json:64
/ui/theme-defs/grayscale/styles/snippet-border/color -> grayscale.json:144
/ui/theme-defs/grayscale/styles/table-border/color -> grayscale.json:123
/ui/theme-defs/grayscale/styles/table-header/bold -> grayscale.json:126
/ui/theme-defs/grayscale/styles/text/background-color -> grayscale.json:25
/ui/theme-defs/grayscale/styles/text/color -> grayscale.json:24
/ui/theme-defs/grayscale/styles/warning/bold -> grayscale.json:44
/ui/theme-defs/grayscale/styles/warning/color -> grayscale.json:43
/ui/theme-defs/grayscale/syntax-styles/ascii-control/color -> grayscale.json:161
/ui/theme-defs/grayscale/syntax-styles/comment/color -> grayscale.json:152
/ui/theme-defs/grayscale/syntax-styles/doc-directive/color -> grayscale.json:155
/ui/theme-defs/grayscale/syntax-styles/non-ascii/color -> grayscale.json:164
/ui/theme-defs/grayscale/syntax-styles/null/color -> grayscale.json:158
/ui/theme-defs/grayscale/syntax-styles/number/bold -> grayscale.json:167
/ui/theme-defs/grayscale/vars/black -> grayscale.json:7
/ui/theme-defs/grayscale/vars/blue -> grayscale.json:11
/ui/theme-defs/grayscale/vars/cyan -> grayscale.json:13
/ui/theme-defs/grayscale/vars/green -> grayscale.json:9
/ui/theme-defs/grayscale/vars/magenta -> grayscale.json:12
/ui/theme-defs/grayscale/vars/plaintext -> grayscale.json:15
/ui/theme-defs/grayscale/vars/red -> grayscale.json:8
/ui/theme-defs/grayscale/vars/white -> grayscale.json:14
/ui/theme-defs/grayscale/vars/yellow -> grayscale.json:10
/ui/theme-defs/monocai/log-level-styles/critical/color -> monocai.json:300
/ui/theme-defs/monocai/log-level-styles/error/color -> monocai.json:297
/ui/theme-defs/monocai/log-level-styles/fatal/color -> monocai.json:303
/ui/theme-defs/monocai/log-level-styles/warning/color -> monocai.json:294
/ui/theme-defs/monocai/status-styles/active/background-color -> monocai.json:278
/ui/theme-defs/monocai/status-styles/active/color -> monocai.json:277
/ui/theme-defs/monocai/status-styles/alert/background-color -> monocai.json:274
/ui/theme-defs/monocai/status-styles/alert/color -> monocai.json:273
/ui/theme-defs/monocai/status-styles/disabled-title/background-color -> monocai.json:238
/ui/theme-defs/monocai/status-styles/disabled-title/bold -> monocai.json:239
/ui/theme-defs/monocai/status-styles/disabled-title/color -> monocai.json:237
/ui/theme-defs/monocai/status-styles/hotkey/color -> monocai.json:261
/ui/theme-defs/monocai/status-styles/hotkey/underline -> monocai.json:262
/ui/theme-defs/monocai/status-styles/inactive-alert/background-color -> monocai.json:286
/ui/theme-defs/monocai/status-styles/inactive-alert/color -> monocai.json:285
/ui/theme-defs/monocai/status-styles/inactive/background-color -> monocai.json:282
/ui/theme-defs/monocai/status-styles/inactive/color -> monocai.json:281
/ui/theme-defs/monocai/status-styles/info/background-color -> monocai.json:253
/ui/theme-defs/monocai/status-styles/info/color -> monocai.json:252
/ui/theme-defs/monocai/status-styles/subtitle/background-color -> monocai.json:248
/ui/theme-defs/monocai/status-styles/subtitle/bold -> monocai.json:249
/ui/theme-defs/monocai/status-styles/subtitle/color -> monocai.json:247
/ui/theme-defs/monocai/status-styles/suggestion/color -> monocai.json:289
/ui/theme-defs/monocai/status-styles/text/background-color -> monocai.json:266
/ui/theme-defs/monocai/status-styles/text/color -> monocai.json:265
/ui/theme-defs/monocai/status-styles/title-hotkey/background-color -> monocai.json:257
/ui/theme-defs/monocai/status-styles/title-hotkey/color -> monocai.json:256
/ui/theme-defs/monocai/status-styles/title-hotkey/underline -> monocai.json:258
/ui/theme-defs/monocai/status-styles/title/background-color -> monocai.json:243
/ui/theme-defs/monocai/status-styles/title/bold -> monocai.json:244
/ui/theme-defs/monocai/status-styles/title/color -> monocai.json:242
/ui/theme-defs/monocai/status-styles/warn/background-color -> monocai.json:270
/ui/theme-defs/monocai/status-styles/warn/color -> monocai.json:269
/ui/theme-defs/monocai/styles/adjusted-time/color -> monocai.json:62
/ui/theme-defs/monocai/styles/alt-text/background-color -> monocai.json:30
/ui/theme-defs/monocai/styles/breadcrumb/bold -> monocai.json:123
/ui/theme-defs/monocai/styles/breadcrumb/color -> monocai.json:122
/ui/theme-defs/monocai/styles/cursor-line/background-color -> monocai.json:54
/ui/theme-defs/monocai/styles/cursor-line/bold -> monocai.json:55
/ui/theme-defs/monocai/styles/cursor-line/color -> monocai.json:53
/ui/theme-defs/monocai/styles/disabled-cursor-line/background-color -> monocai.json:59
/ui/theme-defs/monocai/styles/disabled-cursor-line/color -> monocai.json:58
/ui/theme-defs/monocai/styles/disabled-focused/background-color -> monocai.json:82
/ui/theme-defs/monocai/styles/disabled-focused/color -> monocai.json:81
/ui/theme-defs/monocai/styles/error/bold -> monocai.json:42
/ui/theme-defs/monocai/styles/error/color -> monocai.json:41
/ui/theme-defs/monocai/styles/file-offset/color -> monocai.json:71
/ui/theme-defs/monocai/styles/focused/background-color -> monocai.json:78
/ui/theme-defs/monocai/styles/focused/color -> monocai.json:77
/ui/theme-defs/monocai/styles/footnote-border/background-color -> monocai.json:140
/ui/theme-defs/monocai/styles/footnote-border/color -> monocai.json:139
/ui/theme-defs/monocai/styles/footnote-text/background-color -> monocai.json:144
/ui/theme-defs/monocai/styles/footnote-text/color -> monocai.json:143
/ui/theme-defs/monocai/styles/h1/bold -> monocai.json:94
/ui/theme-defs/monocai/styles/h1/color -> monocai.json:93
/ui/theme-defs/monocai/styles/h2/color -> monocai.json:97
/ui/theme-defs/monocai/styles/h2/underline -> monocai.json:98
/ui/theme-defs/monocai/styles/h3/color -> monocai.json:101
/ui/theme-defs/monocai/styles/h4/underline -> monocai.json:104
/ui/theme-defs/monocai/styles/h5/underline -> monocai.json:107
/ui/theme-defs/monocai/styles/h6/underline -> monocai.json:110
/ui/theme-defs/monocai/styles/hidden/bold -> monocai.json:50
/ui/theme-defs/monocai/styles/hidden/color -> monocai.json:49
/ui/theme-defs/monocai/styles/hr/color -> monocai.json:113
/ui/theme-defs/monocai/styles/hyperlink/underline -> monocai.json:116
/ui/theme-defs/monocai/styles/identifier/color -> monocai.json:20
/ui/theme-defs/monocai/styles/indent-guide/color -> monocai.json:150
/ui/theme-defs/monocai/styles/info/bold -> monocai.json:38
/ui/theme-defs/monocai/styles/info/color -> monocai.json:37
/ui/theme-defs/monocai/styles/invalid-msg/color -> monocai.json:74
/ui/theme-defs/monocai/styles/list-glyph/color -> monocai.json:119
/ui/theme-defs/monocai/styles/offset-time/color -> monocai.json:68
/ui/theme-defs/monocai/styles/ok/bold -> monocai.json:34
/ui/theme-defs/monocai/styles/ok/color -> monocai.json:33
/ui/theme-defs/monocai/styles/popup/background-color -> monocai.json:86
/ui/theme-defs/monocai/styles/popup/color -> monocai.json:85
/ui/theme-defs/monocai/styles/quote-border/background-color -> monocai.json:133
/ui/theme-defs/monocai/styles/quote-border/color -> monocai.json:132
/ui/theme-defs/monocai/styles/quoted-text/background-color -> monocai.json:136
/ui/theme-defs/monocai/styles/scrollbar/background-color -> monocai.json:90
/ui/theme-defs/monocai/styles/scrollbar/color -> monocai.json:89
/ui/theme-defs/monocai/styles/selected-text/background-color -> monocai.json:27
/ui/theme-defs/monocai/styles/skewed-time/color -> monocai.json:65
/ui/theme-defs/monocai/styles/snippet-border/color -> monocai.json:147
/ui/theme-defs/monocai/styles/table-border/color -> monocai.json:126
/ui/theme-defs/monocai/styles/table-header/bold -> monocai.json:129
/ui/theme-defs/monocai/styles/text/background-color -> monocai.json:24
/ui/theme-defs/monocai/styles/text/color -> monocai.json:23
/ui/theme-defs/monocai/styles/warning/bold -> monocai.json:46
/ui/theme-defs/monocai/styles/warning/color -> monocai.json:45
/ui/theme-defs/monocai/syntax-styles/ascii-control/color -> monocai.json:217
/ui/theme-defs/monocai/syntax-styles/code-border/background-color -> monocai.json:164
/ui/theme-defs/monocai/syntax-styles/code-border/color -> monocai.json:163
/ui/theme-defs/monocai/syntax-styles/comment/color -> monocai.json:175
/ui/theme-defs/monocai/syntax-styles/diff-add/color -> monocai.json:196
/ui/theme-defs/monocai/syntax-styles/diff-delete/color -> monocai.json:193
/ui/theme-defs/monocai/syntax-styles/diff-section/color -> monocai.json:199
/ui/theme-defs/monocai/syntax-styles/doc-directive/color -> monocai.json:178
/ui/theme-defs/monocai/syntax-styles/file/color -> monocai.json:211
/ui/theme-defs/monocai/syntax-styles/function/color -> monocai.json:226
/ui/theme-defs/monocai/syntax-styles/inline-code/background-color -> monocai.json:156
/ui/theme-defs/monocai/syntax-styles/inline-code/color -> monocai.json:155
/ui/theme-defs/monocai/syntax-styles/keyword/bold -> monocai.json:168
/ui/theme-defs/monocai/syntax-styles/keyword/color -> monocai.json:167
/ui/theme-defs/monocai/syntax-styles/non-ascii/color -> monocai.json:220
/ui/theme-defs/monocai/syntax-styles/null/color -> monocai.json:214
/ui/theme-defs/monocai/syntax-styles/number/bold -> monocai.json:223
/ui/theme-defs/monocai/syntax-styles/quoted-code/background-color -> monocai.json:160
/ui/theme-defs/monocai/syntax-styles/quoted-code/color -> monocai.json:159
/ui/theme-defs/monocai/syntax-styles/re-repeat/color -> monocai.json:190
/ui/theme-defs/monocai/syntax-styles/re-special/color -> monocai.json:187
/ui/theme-defs/monocai/syntax-styles/separators-references-accessors/color -> monocai.json:229
/ui/theme-defs/monocai/syntax-styles/spectrogram-high/background-color -> monocai.json:208
/ui/theme-defs/monocai/syntax-styles/spectrogram-low/background-color -> monocai.json:202
/ui/theme-defs/monocai/syntax-styles/spectrogram-medium/background-color -> monocai.json:205
/ui/theme-defs/monocai/syntax-styles/string/bold -> monocai.json:172
/ui/theme-defs/monocai/syntax-styles/string/color -> monocai.json:171
/ui/theme-defs/monocai/syntax-styles/symbol/color -> monocai.json:184
/ui/theme-defs/monocai/syntax-styles/type/color -> monocai.json:232
/ui/theme-defs/monocai/syntax-styles/variable/color -> monocai.json:181
/ui/theme-defs/monocai/vars/black -> monocai.json:7
/ui/theme-defs/monocai/vars/blue -> monocai.json:11
/ui/theme-defs/monocai/vars/cyan -> monocai.json:13
/ui/theme-defs/monocai/vars/green -> monocai.json:9
/ui/theme-defs/monocai/vars/magenta -> monocai.json:12
/ui/theme-defs/monocai/vars/orange -> monocai.json:15
/ui/theme-defs/monocai/vars/red -> monocai.json:8
/ui/theme-defs/monocai/vars/semantic_highlight_color -> monocai.json:16
/ui/theme-defs/monocai/vars/white -> monocai.json:14
/ui/theme-defs/monocai/vars/yellow -> monocai.json:10
/ui/theme-defs/night-owl/log-level-styles/critical/color -> night-owl.json:299
/ui/theme-defs/night-owl/log-level-styles/error/color -> night-owl.json:296
/ui/theme-defs/night-owl/log-level-styles/fatal/color -> night-owl.json:302
/ui/theme-defs/night-owl/log-level-styles/warning/color -> night-owl.json:293
/ui/theme-defs/night-owl/status-styles/active/background-color -> night-owl.json:266
/ui/theme-defs/night-owl/status-styles/active/color -> night-owl.json:265
/ui/theme-defs/night-owl/status-styles/alert/background-color -> night-owl.json:262
/ui/theme-defs/night-owl/status-styles/alert/color -> night-owl.json:261
/ui/theme-defs/night-owl/status-styles/disabled-title/background-color -> night-owl.json:236
/ui/theme-defs/night-owl/status-styles/disabled-title/bold -> night-owl.json:237
/ui/theme-defs/night-owl/status-styles/disabled-title/color -> night-owl.json:235
/ui/theme-defs/night-owl/status-styles/hotkey/bold -> night-owl.json:278
/ui/theme-defs/night-owl/status-styles/hotkey/color -> night-owl.json:277
/ui/theme-defs/night-owl/status-styles/hotkey/underline -> night-owl.json:279
/ui/theme-defs/night-owl/status-styles/inactive-alert/background-color -> night-owl.json:274
/ui/theme-defs/night-owl/status-styles/inactive-alert/color -> night-owl.json:273
/ui/theme-defs/night-owl/status-styles/inactive/background-color -> night-owl.json:270
/ui/theme-defs/night-owl/status-styles/inactive/color -> night-owl.json:269
/ui/theme-defs/night-owl/status-styles/info/background-color -> night-owl.json:250
/ui/theme-defs/night-owl/status-styles/info/color -> night-owl.json:249
/ui/theme-defs/night-owl/status-styles/subtitle/background-color -> night-owl.json:246
/ui/theme-defs/night-owl/status-styles/subtitle/color -> night-owl.json:245
/ui/theme-defs/night-owl/status-styles/suggestion/color -> night-owl.json:288
/ui/theme-defs/night-owl/status-styles/text/background-color -> night-owl.json:254
/ui/theme-defs/night-owl/status-styles/text/color -> night-owl.json:253
/ui/theme-defs/night-owl/status-styles/title-hotkey/background-color -> night-owl.json:283
/ui/theme-defs/night-owl/status-styles/title-hotkey/bold -> night-owl.json:284
/ui/theme-defs/night-owl/status-styles/title-hotkey/color -> night-owl.json:282
/ui/theme-defs/night-owl/status-styles/title-hotkey/underline -> night-owl.json:285
/ui/theme-defs/night-owl/status-styles/title/background-color -> night-owl.json:241
/ui/theme-defs/night-owl/status-styles/title/bold -> night-owl.json:242
/ui/theme-defs/night-owl/status-styles/title/color -> night-owl.json:240
/ui/theme-defs/night-owl/status-styles/warn/background-color -> night-owl.json:258
/ui/theme-defs/night-owl/status-styles/warn/color -> night-owl.json:257
/ui/theme-defs/night-owl/styles/adjusted-time/color -> night-owl.json:63
/ui/theme-defs/night-owl/styles/alt-text/background-color -> night-owl.json:30
/ui/theme-defs/night-owl/styles/breadcrumb/bold -> night-owl.json:122
/ui/theme-defs/night-owl/styles/breadcrumb/color -> night-owl.json:121
/ui/theme-defs/night-owl/styles/cursor-line/background-color -> night-owl.json:54
/ui/theme-defs/night-owl/styles/cursor-line/bold -> night-owl.json:55
/ui/theme-defs/night-owl/styles/cursor-line/color -> night-owl.json:53
/ui/theme-defs/night-owl/styles/cursor-line/underline -> night-owl.json:56
/ui/theme-defs/night-owl/styles/disabled-cursor-line/background-color -> night-owl.json:60
/ui/theme-defs/night-owl/styles/disabled-cursor-line/color -> night-owl.json:59
/ui/theme-defs/night-owl/styles/disabled-focused/background-color -> night-owl.json:83
/ui/theme-defs/night-owl/styles/disabled-focused/color -> night-owl.json:82
/ui/theme-defs/night-owl/styles/error/bold -> night-owl.json:42
/ui/theme-defs/night-owl/styles/error/color -> night-owl.json:41
/ui/theme-defs/night-owl/styles/file-offset/color -> night-owl.json:72
/ui/theme-defs/night-owl/styles/focused/background-color -> night-owl.json:79
/ui/theme-defs/night-owl/styles/focused/color -> night-owl.json:78
/ui/theme-defs/night-owl/styles/footnote-border/background-color -> night-owl.json:139
/ui/theme-defs/night-owl/styles/footnote-border/color -> night-owl.json:138
/ui/theme-defs/night-owl/styles/footnote-text/background-color -> night-owl.json:143
/ui/theme-defs/night-owl/styles/footnote-text/color -> night-owl.json:142
/ui/theme-defs/night-owl/styles/h1/underline -> night-owl.json:94
/ui/theme-defs/night-owl/styles/h2/underline -> night-owl.json:97
/ui/theme-defs/night-owl/styles/h3/underline -> night-owl.json:100
/ui/theme-defs/night-owl/styles/h4/underline -> night-owl.json:103
/ui/theme-defs/night-owl/styles/h5/underline -> night-owl.json:106
/ui/theme-defs/night-owl/styles/h6/underline -> night-owl.json:109
/ui/theme-defs/night-owl/styles/hidden/bold -> night-owl.json:50
/ui/theme-defs/night-owl/styles/hidden/color -> night-owl.json:49
/ui/theme-defs/night-owl/styles/hr/color -> night-owl.json:112
/ui/theme-defs/night-owl/styles/hyperlink/underline -> night-owl.json:115
/ui/theme-defs/night-owl/styles/identifier/background-color -> night-owl.json:19
/ui/theme-defs/night-owl/styles/identifier/color -> night-owl.json:20
/ui/theme-defs/night-owl/styles/indent-guide/color -> night-owl.json:149
/ui/theme-defs/night-owl/styles/info/bold -> night-owl.json:38
/ui/theme-defs/night-owl/styles/info/color -> night-owl.json:37
/ui/theme-defs/night-owl/styles/invalid-msg/color -> night-owl.json:75
/ui/theme-defs/night-owl/styles/list-glyph/color -> night-owl.json:118
/ui/theme-defs/night-owl/styles/offset-time/color -> night-owl.json:69
/ui/theme-defs/night-owl/styles/ok/bold -> night-owl.json:34
/ui/theme-defs/night-owl/styles/ok/color -> night-owl.json:33
/ui/theme-defs/night-owl/styles/popup/background-color -> night-owl.json:87
/ui/theme-defs/night-owl/styles/popup/color -> night-owl.json:86
/ui/theme-defs/night-owl/styles/quote-border/background-color -> night-owl.json:132
/ui/theme-defs/night-owl/styles/quote-border/color -> night-owl.json:131
/ui/theme-defs/night-owl/styles/quoted-text/background-color -> night-owl.json:135
/ui/theme-defs/night-owl/styles/scrollbar/background-color -> night-owl.json:91
/ui/theme-defs/night-owl/styles/scrollbar/color -> night-owl.json:90
/ui/theme-defs/night-owl/styles/selected-text/background-color -> night-owl.json:27
/ui/theme-defs/night-owl/styles/skewed-time/color -> night-owl.json:66
/ui/theme-defs/night-owl/styles/snippet-border/color -> night-owl.json:146
/ui/theme-defs/night-owl/styles/table-border/color -> night-owl.json:125
/ui/theme-defs/night-owl/styles/table-header/bold -> night-owl.json:128
/ui/theme-defs/night-owl/styles/text/background-color -> night-owl.json:24
/ui/theme-defs/night-owl/styles/text/color -> night-owl.json:23
/ui/theme-defs/night-owl/styles/warning/bold -> night-owl.json:46
/ui/theme-defs/night-owl/styles/warning/color -> night-owl.json:45
/ui/theme-defs/night-owl/syntax-styles/ascii-control/color -> night-owl.json:218
/ui/theme-defs/night-owl/syntax-styles/code-border/background-color -> night-owl.json:163
/ui/theme-defs/night-owl/syntax-styles/code-border/color -> night-owl.json:162
/ui/theme-defs/night-owl/syntax-styles/comment/color -> night-owl.json:173
/ui/theme-defs/night-owl/syntax-styles/diff-add/color -> night-owl.json:197
/ui/theme-defs/night-owl/syntax-styles/diff-delete/color -> night-owl.json:194
/ui/theme-defs/night-owl/syntax-styles/diff-section/color -> night-owl.json:200
/ui/theme-defs/night-owl/syntax-styles/doc-directive/color -> night-owl.json:176
/ui/theme-defs/night-owl/syntax-styles/file/color -> night-owl.json:212
/ui/theme-defs/night-owl/syntax-styles/function/color -> night-owl.json:224
/ui/theme-defs/night-owl/syntax-styles/inline-code/background-color -> night-owl.json:155
/ui/theme-defs/night-owl/syntax-styles/inline-code/color -> night-owl.json:154
/ui/theme-defs/night-owl/syntax-styles/keyword/color -> night-owl.json:166
/ui/theme-defs/night-owl/syntax-styles/non-ascii/color -> night-owl.json:221
/ui/theme-defs/night-owl/syntax-styles/null/color -> night-owl.json:215
/ui/theme-defs/night-owl/syntax-styles/number/color -> night-owl.json:185
/ui/theme-defs/night-owl/syntax-styles/quoted-code/background-color -> night-owl.json:159
/ui/theme-defs/night-owl/syntax-styles/quoted-code/color -> night-owl.json:158
/ui/theme-defs/night-owl/syntax-styles/re-repeat/color -> night-owl.json:191
/ui/theme-defs/night-owl/syntax-styles/re-special/color -> night-owl.json:188
/ui/theme-defs/night-owl/syntax-styles/separators-references-accessors/color -> night-owl.json:227
/ui/theme-defs/night-owl/syntax-styles/spectrogram-high/background-color -> night-owl.json:209
/ui/theme-defs/night-owl/syntax-styles/spectrogram-low/background-color -> night-owl.json:203
/ui/theme-defs/night-owl/syntax-styles/spectrogram-medium/background-color -> night-owl.json:206
/ui/theme-defs/night-owl/syntax-styles/string/bold -> night-owl.json:170
/ui/theme-defs/night-owl/syntax-styles/string/color -> night-owl.json:169
/ui/theme-defs/night-owl/syntax-styles/symbol/color -> night-owl.json:182
/ui/theme-defs/night-owl/syntax-styles/type/color -> night-owl.json:230
/ui/theme-defs/night-owl/syntax-styles/variable/color -> night-owl.json:179
/ui/theme-defs/night-owl/vars/black -> night-owl.json:7
/ui/theme-defs/night-owl/vars/blue -> night-owl.json:11
/ui/theme-defs/night-owl/vars/cyan -> night-owl.json:13
/ui/theme-defs/night-owl/vars/green -> night-owl.json:9
/ui/theme-defs/night-owl/vars/magenta -> night-owl.json:12
/ui/theme-defs/night-owl/vars/red -> night-owl.json:8
/ui/theme-defs/night-owl/vars/semantic_highlight_color -> night-owl.json:15
/ui/theme-defs/night-owl/vars/white -> night-owl.json:14
/ui/theme-defs/night-owl/vars/yellow -> night-owl.json:10
/ui/theme-defs/solarized-dark/log-level-styles/critical/color -> solarized-dark.json:307
/ui/theme-defs/solarized-dark/log-level-styles/error/color -> solarized-dark.json:304
/ui/theme-defs/solarized-dark/log-level-styles/fatal/color -> solarized-dark.json:310
/ui/theme-defs/solarized-dark/log-level-styles/warning/color -> solarized-dark.json:301
/ui/theme-defs/solarized-dark/status-styles/active/background-color -> solarized-dark.json:272
/ui/theme-defs/solarized-dark/status-styles/active/color -> solarized-dark.json:271
/ui/theme-defs/solarized-dark/status-styles/alert/background-color -> solarized-dark.json:268
/ui/theme-defs/solarized-dark/status-styles/alert/color -> solarized-dark.json:267
/ui/theme-defs/solarized-dark/status-styles/disabled-title/background-color -> solarized-dark.json:245
/ui/theme-defs/solarized-dark/status-styles/disabled-title/bold -> solarized-dark.json:246
/ui/theme-defs/solarized-dark/status-styles/disabled-title/color -> solarized-dark.json:244
/ui/theme-defs/solarized-dark/status-styles/hotkey/color -> solarized-dark.json:284
/ui/theme-defs/solarized-dark/status-styles/hotkey/underline -> solarized-dark.json:285
/ui/theme-defs/solarized-dark/status-styles/inactive-alert/background-color -> solarized-dark.json:293
/ui/theme-defs/solarized-dark/status-styles/inactive-alert/color -> solarized-dark.json:292
/ui/theme-defs/solarized-dark/status-styles/inactive/background-color -> solarized-dark.json:289
/ui/theme-defs/solarized-dark/status-styles/inactive/color -> solarized-dark.json:288
/ui/theme-defs/solarized-dark/status-styles/info/background-color -> solarized-dark.json:276
/ui/theme-defs/solarized-dark/status-styles/info/color -> solarized-dark.json:275
/ui/theme-defs/solarized-dark/status-styles/subtitle/background-color -> solarized-dark.json:255
/ui/theme-defs/solarized-dark/status-styles/subtitle/bold -> solarized-dark.json:256
/ui/theme-defs/solarized-dark/status-styles/subtitle/color -> solarized-dark.json:254
/ui/theme-defs/solarized-dark/status-styles/suggestion/color -> solarized-dark.json:296
/ui/theme-defs/solarized-dark/status-styles/text/background-color -> solarized-dark.json:260
/ui/theme-defs/solarized-dark/status-styles/text/color -> solarized-dark.json:259
/ui/theme-defs/solarized-dark/status-styles/title-hotkey/background-color -> solarized-dark.json:280
/ui/theme-defs/solarized-dark/status-styles/title-hotkey/color -> solarized-dark.json:279
/ui/theme-defs/solarized-dark/status-styles/title-hotkey/underline -> solarized-dark.json:281
/ui/theme-defs/solarized-dark/status-styles/title/background-color -> solarized-dark.json:250
/ui/theme-defs/solarized-dark/status-styles/title/bold -> solarized-dark.json:251
/ui/theme-defs/solarized-dark/status-styles/title/color -> solarized-dark.json:249
/ui/theme-defs/solarized-dark/status-styles/warn/background-color -> solarized-dark.json:264
/ui/theme-defs/solarized-dark/status-styles/warn/color -> solarized-dark.json:263
/ui/theme-defs/solarized-dark/styles/adjusted-time/color -> solarized-dark.json:72
/ui/theme-defs/solarized-dark/styles/alt-text/background-color -> solarized-dark.json:39
/ui/theme-defs/solarized-dark/styles/breadcrumb/bold -> solarized-dark.json:131
/ui/theme-defs/solarized-dark/styles/breadcrumb/color -> solarized-dark.json:130
/ui/theme-defs/solarized-dark/styles/cursor-line/background-color -> solarized-dark.json:63
/ui/theme-defs/solarized-dark/styles/cursor-line/bold -> solarized-dark.json:64
/ui/theme-defs/solarized-dark/styles/cursor-line/color -> solarized-dark.json:62
/ui/theme-defs/solarized-dark/styles/cursor-line/underline -> solarized-dark.json:65
/ui/theme-defs/solarized-dark/styles/disabled-cursor-line/background-color -> solarized-dark.json:69
/ui/theme-defs/solarized-dark/styles/disabled-cursor-line/color -> solarized-dark.json:68
/ui/theme-defs/solarized-dark/styles/disabled-focused/background-color -> solarized-dark.json:100
/ui/theme-defs/solarized-dark/styles/disabled-focused/color -> solarized-dark.json:99
/ui/theme-defs/solarized-dark/styles/error/bold -> solarized-dark.json:51
/ui/theme-defs/solarized-dark/styles/error/color -> solarized-dark.json:50
/ui/theme-defs/solarized-dark/styles/file-offset/color -> solarized-dark.json:81
/ui/theme-defs/solarized-dark/styles/focused/background-color -> solarized-dark.json:96
/ui/theme-defs/solarized-dark/styles/focused/color -> solarized-dark.json:95
/ui/theme-defs/solarized-dark/styles/footnote-border/background-color -> solarized-dark.json:148
/ui/theme-defs/solarized-dark/styles/footnote-border/color -> solarized-dark.json:147
/ui/theme-defs/solarized-dark/styles/footnote-text/background-color -> solarized-dark.json:152
/ui/theme-defs/solarized-dark/styles/footnote-text/color -> solarized-dark.json:151
/ui/theme-defs/solarized-dark/styles/h1/underline -> solarized-dark.json:103
/ui/theme-defs/solarized-dark/styles/h2/underline -> solarized-dark.json:106
/ui/theme-defs/solarized-dark/styles/h3/underline -> solarized-dark.json:109
/ui/theme-defs/solarized-dark/styles/h4/underline -> solarized-dark.json:112
/ui/theme-defs/solarized-dark/styles/h5/underline -> solarized-dark.json:115
/ui/theme-defs/solarized-dark/styles/h6/underline -> solarized-dark.json:118
/ui/theme-defs/solarized-dark/styles/hidden/bold -> solarized-dark.json:59
/ui/theme-defs/solarized-dark/styles/hidden/color -> solarized-dark.json:58
/ui/theme-defs/solarized-dark/styles/hr/color -> solarized-dark.json:121
/ui/theme-defs/solarized-dark/styles/hyperlink/underline -> solarized-dark.json:124
/ui/theme-defs/solarized-dark/styles/identifier/background-color -> solarized-dark.json:28
/ui/theme-defs/solarized-dark/styles/identifier/color -> solarized-dark.json:29
/ui/theme-defs/solarized-dark/styles/indent-guide/color -> solarized-dark.json:158
/ui/theme-defs/solarized-dark/styles/info/bold -> solarized-dark.json:47
/ui/theme-defs/solarized-dark/styles/info/color -> solarized-dark.json:46
/ui/theme-defs/solarized-dark/styles/invalid-msg/color -> solarized-dark.json:84
/ui/theme-defs/solarized-dark/styles/list-glyph/color -> solarized-dark.json:127
/ui/theme-defs/solarized-dark/styles/offset-time/color -> solarized-dark.json:78
/ui/theme-defs/solarized-dark/styles/ok/bold -> solarized-dark.json:43
/ui/theme-defs/solarized-dark/styles/ok/color -> solarized-dark.json:42
/ui/theme-defs/solarized-dark/styles/popup/background-color -> solarized-dark.json:88
/ui/theme-defs/solarized-dark/styles/popup/color -> solarized-dark.json:87
/ui/theme-defs/solarized-dark/styles/quote-border/background-color -> solarized-dark.json:141
/ui/theme-defs/solarized-dark/styles/quote-border/color -> solarized-dark.json:140
/ui/theme-defs/solarized-dark/styles/quoted-text/background-color -> solarized-dark.json:144
/ui/theme-defs/solarized-dark/styles/scrollbar/background-color -> solarized-dark.json:92
/ui/theme-defs/solarized-dark/styles/scrollbar/color -> solarized-dark.json:91
/ui/theme-defs/solarized-dark/styles/selected-text/background-color -> solarized-dark.json:36
/ui/theme-defs/solarized-dark/styles/skewed-time/color -> solarized-dark.json:75
/ui/theme-defs/solarized-dark/styles/snippet-border/color -> solarized-dark.json:155
/ui/theme-defs/solarized-dark/styles/table-border/color -> solarized-dark.json:134
/ui/theme-defs/solarized-dark/styles/table-header/bold -> solarized-dark.json:137
/ui/theme-defs/solarized-dark/styles/text/background-color -> solarized-dark.json:33
/ui/theme-defs/solarized-dark/styles/text/color -> solarized-dark.json:32
/ui/theme-defs/solarized-dark/styles/warning/bold -> solarized-dark.json:55
/ui/theme-defs/solarized-dark/styles/warning/color -> solarized-dark.json:54
/ui/theme-defs/solarized-dark/syntax-styles/ascii-control/color -> solarized-dark.json:224
/ui/theme-defs/solarized-dark/syntax-styles/code-border/background-color -> solarized-dark.json:172
/ui/theme-defs/solarized-dark/syntax-styles/code-border/color -> solarized-dark.json:171
/ui/theme-defs/solarized-dark/syntax-styles/comment/color -> solarized-dark.json:182
/ui/theme-defs/solarized-dark/syntax-styles/diff-add/color -> solarized-dark.json:203
/ui/theme-defs/solarized-dark/syntax-styles/diff-delete/color -> solarized-dark.json:200
/ui/theme-defs/solarized-dark/syntax-styles/diff-section/color -> solarized-dark.json:206
/ui/theme-defs/solarized-dark/syntax-styles/doc-directive/color -> solarized-dark.json:185
/ui/theme-defs/solarized-dark/syntax-styles/file/color -> solarized-dark.json:218
/ui/theme-defs/solarized-dark/syntax-styles/function/color -> solarized-dark.json:233
/ui/theme-defs/solarized-dark/syntax-styles/inline-code/background-color -> solarized-dark.json:164
/ui/theme-defs/solarized-dark/syntax-styles/inline-code/color -> solarized-dark.json:163
/ui/theme-defs/solarized-dark/syntax-styles/keyword/color -> solarized-dark.json:175
/ui/theme-defs/solarized-dark/syntax-styles/non-ascii/color -> solarized-dark.json:227
/ui/theme-defs/solarized-dark/syntax-styles/null/color -> solarized-dark.json:221
/ui/theme-defs/solarized-dark/syntax-styles/number/bold -> solarized-dark.json:230
/ui/theme-defs/solarized-dark/syntax-styles/quoted-code/background-color -> solarized-dark.json:168
/ui/theme-defs/solarized-dark/syntax-styles/quoted-code/color -> solarized-dark.json:167
/ui/theme-defs/solarized-dark/syntax-styles/re-repeat/color -> solarized-dark.json:197
/ui/theme-defs/solarized-dark/syntax-styles/re-special/color -> solarized-dark.json:194
/ui/theme-defs/solarized-dark/syntax-styles/separators-references-accessors/color -> solarized-dark.json:236
/ui/theme-defs/solarized-dark/syntax-styles/spectrogram-high/background-color -> solarized-dark.json:215
/ui/theme-defs/solarized-dark/syntax-styles/spectrogram-low/background-color -> solarized-dark.json:209
/ui/theme-defs/solarized-dark/syntax-styles/spectrogram-medium/background-color -> solarized-dark.json:212
/ui/theme-defs/solarized-dark/syntax-styles/string/bold -> solarized-dark.json:179
/ui/theme-defs/solarized-dark/syntax-styles/string/color -> solarized-dark.json:178
/ui/theme-defs/solarized-dark/syntax-styles/symbol/color -> solarized-dark.json:191
/ui/theme-defs/solarized-dark/syntax-styles/type/color -> solarized-dark.json:239
/ui/theme-defs/solarized-dark/syntax-styles/variable/color -> solarized-dark.json:188
/ui/theme-defs/solarized-dark/vars/base0 -> solarized-dark.json:11
/ui/theme-defs/solarized-dark/vars/base00 -> solarized-dark.json:10
/ui/theme-defs/solarized-dark/vars/base01 -> solarized-dark.json:9
/ui/theme-defs/solarized-dark/vars/base02 -> solarized-dark.json:8
/ui/theme-defs/solarized-dark/vars/base03 -> solarized-dark.json:7
/ui/theme-defs/solarized-dark/vars/base1 -> solarized-dark.json:12
/ui/theme-defs/solarized-dark/vars/base2 -> solarized-dark.json:13
/ui/theme-defs/solarized-dark/vars/base3 -> solarized-dark.json:14
/ui/theme-defs/solarized-dark/vars/black -> solarized-dark.json:15
/ui/theme-defs/solarized-dark/vars/blue -> solarized-dark.json:21
/ui/theme-defs/solarized-dark/vars/cyan -> solarized-dark.json:22
/ui/theme-defs/solarized-dark/vars/green -> solarized-dark.json:23
/ui/theme-defs/solarized-dark/vars/magenta -> solarized-dark.json:19
/ui/theme-defs/solarized-dark/vars/orange -> solarized-dark.json:17
/ui/theme-defs/solarized-dark/vars/red -> solarized-dark.json:18
/ui/theme-defs/solarized-dark/vars/semantic_highlight_color -> solarized-dark.json:24
/ui/theme-defs/solarized-dark/vars/violet -> solarized-dark.json:20
/ui/theme-defs/solarized-dark/vars/yellow -> solarized-dark.json:16
/ui/theme-defs/solarized-light/log-level-styles/critical/color -> solarized-light.json:257
/ui/theme-defs/solarized-light/log-level-styles/error/color -> solarized-light.json:254
/ui/theme-defs/solarized-light/log-level-styles/fatal/color -> solarized-light.json:260
/ui/theme-defs/solarized-light/log-level-styles/warning/color -> solarized-light.json:251
/ui/theme-defs/solarized-light/status-styles/active/background-color -> solarized-light.json:231
/ui/theme-defs/solarized-light/status-styles/active/color -> solarized-light.json:230
/ui/theme-defs/solarized-light/status-styles/alert/background-color -> solarized-light.json:227
/ui/theme-defs/solarized-light/status-styles/alert/color -> solarized-light.json:226
/ui/theme-defs/solarized-light/status-styles/disabled-title/background-color -> solarized-light.json:209
/ui/theme-defs/solarized-light/status-styles/disabled-title/bold -> solarized-light.json:210
/ui/theme-defs/solarized-light/status-styles/disabled-title/color -> solarized-light.json:208
/ui/theme-defs/solarized-light/status-styles/inactive-alert/background-color -> solarized-light.json:243
/ui/theme-defs/solarized-light/status-styles/inactive-alert/color -> solarized-light.json:242
/ui/theme-defs/solarized-light/status-styles/inactive/background-color -> solarized-light.json:239
/ui/theme-defs/solarized-light/status-styles/inactive/color -> solarized-light.json:238
/ui/theme-defs/solarized-light/status-styles/info/background-color -> solarized-light.json:235
/ui/theme-defs/solarized-light/status-styles/info/color -> solarized-light.json:234
/ui/theme-defs/solarized-light/status-styles/subtitle/background-color -> solarized-light.json:214
/ui/theme-defs/solarized-light/status-styles/subtitle/bold -> solarized-light.json:215
/ui/theme-defs/solarized-light/status-styles/subtitle/color -> solarized-light.json:213
/ui/theme-defs/solarized-light/status-styles/suggestion/color -> solarized-light.json:246
/ui/theme-defs/solarized-light/status-styles/text/background-color -> solarized-light.json:219
/ui/theme-defs/solarized-light/status-styles/text/color -> solarized-light.json:218
/ui/theme-defs/solarized-light/status-styles/title/background-color -> solarized-light.json:204
/ui/theme-defs/solarized-light/status-styles/title/bold -> solarized-light.json:205
/ui/theme-defs/solarized-light/status-styles/title/color -> solarized-light.json:203
/ui/theme-defs/solarized-light/status-styles/warn/background-color -> solarized-light.json:223
/ui/theme-defs/solarized-light/status-styles/warn/color -> solarized-light.json:222
/ui/theme-defs/solarized-light/styles/adjusted-time/color -> solarized-light.json:67
/ui/theme-defs/solarized-light/styles/alt-text/background-color -> solarized-light.json:38
/ui/theme-defs/solarized-light/styles/breadcrumb/bold -> solarized-light.json:123
/ui/theme-defs/solarized-light/styles/breadcrumb/color -> solarized-light.json:122
/ui/theme-defs/solarized-light/styles/cursor-line/background-color -> solarized-light.json:58
/ui/theme-defs/solarized-light/styles/cursor-line/bold -> solarized-light.json:59
/ui/theme-defs/solarized-light/styles/cursor-line/color -> solarized-light.json:57
/ui/theme-defs/solarized-light/styles/cursor-line/underline -> solarized-light.json:60
/ui/theme-defs/solarized-light/styles/disabled-cursor-line/background-color -> solarized-light.json:64
/ui/theme-defs/solarized-light/styles/disabled-cursor-line/color -> solarized-light.json:63
/ui/theme-defs/solarized-light/styles/disabled-focused/background-color -> solarized-light.json:92
/ui/theme-defs/solarized-light/styles/disabled-focused/color -> solarized-light.json:91
/ui/theme-defs/solarized-light/styles/error/bold -> solarized-light.json:46
/ui/theme-defs/solarized-light/styles/error/color -> solarized-light.json:45
/ui/theme-defs/solarized-light/styles/focused/background-color -> solarized-light.json:88
/ui/theme-defs/solarized-light/styles/focused/color -> solarized-light.json:87
/ui/theme-defs/solarized-light/styles/footnote-border/background-color -> solarized-light.json:140
/ui/theme-defs/solarized-light/styles/footnote-border/color -> solarized-light.json:139
/ui/theme-defs/solarized-light/styles/footnote-text/background-color -> solarized-light.json:144
/ui/theme-defs/solarized-light/styles/footnote-text/color -> solarized-light.json:143
/ui/theme-defs/solarized-light/styles/h1/underline -> solarized-light.json:95
/ui/theme-defs/solarized-light/styles/h2/underline -> solarized-light.json:98
/ui/theme-defs/solarized-light/styles/h3/underline -> solarized-light.json:101
/ui/theme-defs/solarized-light/styles/h4/underline -> solarized-light.json:104
/ui/theme-defs/solarized-light/styles/h5/underline -> solarized-light.json:107
/ui/theme-defs/solarized-light/styles/h6/underline -> solarized-light.json:110
/ui/theme-defs/solarized-light/styles/hidden/bold -> solarized-light.json:54
/ui/theme-defs/solarized-light/styles/hidden/color -> solarized-light.json:53
/ui/theme-defs/solarized-light/styles/hr/color -> solarized-light.json:113
/ui/theme-defs/solarized-light/styles/hyperlink/underline -> solarized-light.json:116
/ui/theme-defs/solarized-light/styles/identifier/color -> solarized-light.json:28
/ui/theme-defs/solarized-light/styles/indent-guide/color -> solarized-light.json:150
/ui/theme-defs/solarized-light/styles/invalid-msg/color -> solarized-light.json:76
/ui/theme-defs/solarized-light/styles/list-glyph/color -> solarized-light.json:119
/ui/theme-defs/solarized-light/styles/offset-time/color -> solarized-light.json:73
/ui/theme-defs/solarized-light/styles/ok/bold -> solarized-light.json:42
/ui/theme-defs/solarized-light/styles/ok/color -> solarized-light.json:41
/ui/theme-defs/solarized-light/styles/popup/background-color -> solarized-light.json:80
/ui/theme-defs/solarized-light/styles/popup/color -> solarized-light.json:79
/ui/theme-defs/solarized-light/styles/quote-border/background-color -> solarized-light.json:133
/ui/theme-defs/solarized-light/styles/quote-border/color -> solarized-light.json:132
/ui/theme-defs/solarized-light/styles/quoted-text/background-color -> solarized-light.json:136
/ui/theme-defs/solarized-light/styles/scrollbar/background-color -> solarized-light.json:84
/ui/theme-defs/solarized-light/styles/scrollbar/color -> solarized-light.json:83
/ui/theme-defs/solarized-light/styles/selected-text/background-color -> solarized-light.json:35
/ui/theme-defs/solarized-light/styles/skewed-time/color -> solarized-light.json:70
/ui/theme-defs/solarized-light/styles/snippet-border/color -> solarized-light.json:147
/ui/theme-defs/solarized-light/styles/table-border/color -> solarized-light.json:126
/ui/theme-defs/solarized-light/styles/table-header/bold -> solarized-light.json:129
/ui/theme-defs/solarized-light/styles/text/background-color -> solarized-light.json:32
/ui/theme-defs/solarized-light/styles/text/color -> solarized-light.json:31
/ui/theme-defs/solarized-light/styles/warning/bold -> solarized-light.json:50
/ui/theme-defs/solarized-light/styles/warning/color -> solarized-light.json:49
/ui/theme-defs/solarized-light/syntax-styles/comment/color -> solarized-light.json:162
/ui/theme-defs/solarized-light/syntax-styles/diff-add/color -> solarized-light.json:183
/ui/theme-defs/solarized-light/syntax-styles/diff-delete/color -> solarized-light.json:180
/ui/theme-defs/solarized-light/syntax-styles/diff-section/color -> solarized-light.json:186
/ui/theme-defs/solarized-light/syntax-styles/doc-directive/color -> solarized-light.json:165
/ui/theme-defs/solarized-light/syntax-styles/file/color -> solarized-light.json:198
/ui/theme-defs/solarized-light/syntax-styles/keyword/color -> solarized-light.json:155
/ui/theme-defs/solarized-light/syntax-styles/re-repeat/color -> solarized-light.json:177
/ui/theme-defs/solarized-light/syntax-styles/re-special/color -> solarized-light.json:174
/ui/theme-defs/solarized-light/syntax-styles/spectrogram-high/background-color -> solarized-light.json:195
/ui/theme-defs/solarized-light/syntax-styles/spectrogram-low/background-color -> solarized-light.json:189
/ui/theme-defs/solarized-light/syntax-styles/spectrogram-medium/background-color -> solarized-light.json:192
/ui/theme-defs/solarized-light/syntax-styles/string/bold -> solarized-light.json:159
/ui/theme-defs/solarized-light/syntax-styles/string/color -> solarized-light.json:158
/ui/theme-defs/solarized-light/syntax-styles/symbol/color -> solarized-light.json:171
/ui/theme-defs/solarized-light/syntax-styles/variable/color -> solarized-light.json:168
/ui/theme-defs/solarized-light/vars/base0 -> solarized-light.json:11
/ui/theme-defs/solarized-light/vars/base00 -> solarized-light.json:10
/ui/theme-defs/solarized-light/vars/base01 -> solarized-light.json:9
/ui/theme-defs/solarized-light/vars/base02 -> solarized-light.json:8
/ui/theme-defs/solarized-light/vars/base03 -> solarized-light.json:7
/ui/theme-defs/solarized-light/vars/base1 -> solarized-light.json:12
/ui/theme-defs/solarized-light/vars/base2 -> solarized-light.json:13
/ui/theme-defs/solarized-light/vars/base3 -> solarized-light.json:14
/ui/theme-defs/solarized-light/vars/black -> solarized-light.json:15
/ui/theme-defs/solarized-light/vars/blue -> solarized-light.json:21
/ui/theme-defs/solarized-light/vars/cyan -> solarized-light.json:22
/ui/theme-defs/solarized-light/vars/green -> solarized-light.json:23
/ui/theme-defs/solarized-light/vars/magenta -> solarized-light.json:19
/ui/theme-defs/solarized-light/vars/orange -> solarized-light.json:17
/ui/theme-defs/solarized-light/vars/red -> solarized-light.json:18
/ui/theme-defs/solarized-light/vars/semantic_highlight_color -> solarized-light.json:24
/ui/theme-defs/solarized-light/vars/violet -> solarized-light.json:20
/ui/theme-defs/solarized-light/vars/yellow -> solarized-light.json:16