-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBlossomTheme.theme
executable file
·2132 lines (2132 loc) · 120 KB
/
BlossomTheme.theme
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
name = BlossomTheme
lookAndFeel = Flat Dark
useDarkDefaults = true
color.bg = [color]system.color.bg.view
color.bg.byteviewer = color.bg
color.bg.byteviewer.highlight = #bfbf40
color.bg.codecompare.highlight.diff = #356493
color.bg.codecompare.highlight.field.diff.matching = #994399
color.bg.codecompare.highlight.field.diff.not.matching = #9775ff
color.bg.codecompare.highlight.field.diff.other = #936a17
color.bg.currentline = color.palette.aliceblue
color.bg.currentline.listing = color.bg.currentline
color.bg.debugger.diff.marker = color.bg.highlight.listing.diff
color.bg.debugger.plugin.objects.default = color.bg
color.bg.debugger.plugin.resources.error = color.palette.lightcoral
color.bg.debugger.plugin.resources.stale = color.palette.lightgray
color.bg.decompiler = color.bg
color.bg.decompiler.current.variable = color.palette.highlight.transparent.yellow
color.bg.decompiler.highlights.default = color.palette.highlight.transparent.yellow
color.bg.decompiler.highlights.find = color.palette.slateblue
color.bg.decompiler.highlights.special = color.palette.crimson
color.bg.decompiler.pcode.dfg.edge.between.blocks = color.palette.red
color.bg.decompiler.pcode.dfg.edge.default = color.palette.navy
color.bg.decompiler.pcode.dfg.edge.selected = color.palette.lightcoral
color.bg.decompiler.pcode.dfg.edge.within.block = color.palette.black
color.bg.decompiler.pcode.dfg.vertex.address.tied = color.palette.orange
color.bg.decompiler.pcode.dfg.vertex.constant = color.palette.darkgreen
color.bg.decompiler.pcode.dfg.vertex.default = color.palette.red
color.bg.decompiler.pcode.dfg.vertex.op = color.palette.red
color.bg.decompiler.pcode.dfg.vertex.persistent = color.palette.darkorange
color.bg.decompiler.pcode.dfg.vertex.register = color.palette.navy
color.bg.decompiler.pcode.dfg.vertex.selected = color.palette.lightcoral
color.bg.decompiler.pcode.dfg.vertex.unique = color.palette.black
color.bg.fieldpanel = color.bg
color.bg.fieldpanel.highlight = color.bg.highlight
color.bg.fieldpanel.selection = color.bg.selection
color.bg.filechooser = color.bg
color.bg.filechooser.shortcut = [color]system.color.bg.view
color.bg.filterfield = color.palette.yellow
color.bg.graph = color.bg
color.bg.header.active = [color]system.color.bg.selected.view
color.bg.header.inactive = color.palette.darkgray
color.bg.help.hint = color.palette.cornflowerblue
color.bg.highlight = #703401
color.bg.highlight.listing = color.bg.highlight
color.bg.highlight.listing.diff = #4d4d2a
color.bg.highlight.visualgraph = color.palette.highlight.transparent.yellow
color.bg.icon.versioned = color.palette.blue
color.bg.interpreterconsole = color.bg
color.bg.listing = color.bg
color.bg.listing.comparison.bytes = color.palette.lightgreen
color.bg.listing.comparison.code.units.diff = color.palette.silver
color.bg.listing.comparison.code.units.unmatched = color.palette.lightskyblue
color.bg.listing.comparison.mnemonic = color.palette.lightgreen
color.bg.listing.comparison.operand = color.palette.lightgreen
color.bg.listing.error = color.palette.lightcoral
color.bg.listing.header.active.field = color.palette.tan
color.bg.listing.highlighter.default = #ffff00 // Yellow
color.bg.listing.highlighter.scoped.read = #ff8c00 // DarkOrange
color.bg.listing.highlighter.scoped.write = #00ff00 // Lime
color.bg.listing.tabs.highlighted = color.palette.lightcornflowerblue
color.bg.listing.tabs.list = [color]system.color.bg.tooltip
color.bg.listing.tabs.more.tabs.hover = color.bg.listing.tabs.selected
color.bg.listing.tabs.selected = [color]system.color.bg.selected.view
color.bg.listing.tabs.unselected = [color]system.color.bg.control
color.bg.logviwer.table.debug = color.palette.lightcornflowerblue
color.bg.logviwer.table.error = color.palette.red
color.bg.logviwer.table.fatal = color.palette.darkred
color.bg.logviwer.table.info = color.palette.lightgray
color.bg.logviwer.table.trace = color.palette.white
color.bg.logviwer.table.warn = color.palette.yellow
color.bg.markerservice = color.bg
color.bg.panel.details = color.bg
color.bg.plugin.bookmark.analysis = color.palette.orange
color.bg.plugin.bookmark.default = color.palette.magenta
color.bg.plugin.bookmark.error = color.palette.crimson
color.bg.plugin.bookmark.info = color.palette.cyan
color.bg.plugin.bookmark.note = color.palette.blueviolet
color.bg.plugin.bookmark.warning = color.palette.gold
color.bg.plugin.colorizer.default = color.palette.lightskyblue
color.bg.plugin.colorizer.marker = color.palette.pink
color.bg.plugin.datamgr.edge.composite = color.palette.magenta
color.bg.plugin.datamgr.edge.default = color.palette.blue
color.bg.plugin.datamgr.edge.reference = color.palette.blue
color.bg.plugin.datamgr.icon.highlight = color.palette.lightsteelblue
color.bg.plugin.editors.compositeeditor.bit.active = color.palette.green
color.bg.plugin.editors.compositeeditor.bit.component = color.palette.lightpurple
color.bg.plugin.editors.compositeeditor.bit.conflict = color.palette.yellow
color.bg.plugin.editors.compositeeditor.bit.undefined = color.palette.white
color.bg.plugin.editors.compositeeditor.byte.header = color.palette.lightgray
color.bg.plugin.editors.compositeeditor.line = [color]system.color.bg.border
color.bg.plugin.editors.compositeeditor.line.interior = color.palette.lightgray
color.bg.plugin.editors.compositeeditor.non.bit = color.palette.lightpurple
color.bg.plugin.editors.compositeeditor.text = color.fg
color.bg.plugin.fcg.edge.primary.direct = #8fbc8f // DarkSeaGreen
color.bg.plugin.fcg.edge.primary.direct.selected = color.palette.lightgreen
color.bg.plugin.fcg.edge.primary.indirect = color.palette.lavender
color.bg.plugin.fcg.edge.primary.indirect.selected = color.palette.silver
color.bg.plugin.fcg.edge.satellite.direct = color.palette.lightgray
color.bg.plugin.fcg.edge.satellite.indirect = color.palette.lightpurple
color.bg.plugin.fcg.vertex.default = #66cdaa // MediumAquaMarine
color.bg.plugin.fcg.vertex.toobig = color.palette.lightgray
color.bg.plugin.functiongraph = color.bg
color.bg.plugin.functiongraph.edge.fall.through = color.flowtype.fall.through
color.bg.plugin.functiongraph.edge.fall.through.highlight = color.palette.lightcoral
color.bg.plugin.functiongraph.edge.jump.conditional = color.flowtype.jump.conditional
color.bg.plugin.functiongraph.edge.jump.conditional.highlight = color.palette.lime
color.bg.plugin.functiongraph.edge.jump.unconditional = color.flowtype.jump.unconditional
color.bg.plugin.functiongraph.edge.jump.unconditional.highlight = color.palette.cornflowerblue
color.bg.plugin.functiongraph.paint.icon = color.palette.lightcornflowerblue
color.bg.plugin.functiongraph.vertex.entry = color.palette.lightgreen
color.bg.plugin.functiongraph.vertex.exit = color.palette.lightcoral
color.bg.plugin.functiongraph.vertex.group = color.palette.greenyellow
color.bg.plugin.functiongraph.vertex.picked = color.palette.yellow
color.bg.plugin.instructionsearch.search.markers = color.palette.lightgreen
color.bg.plugin.instructionsearch.table.default = color.palette.lightgray
color.bg.plugin.instructionsearch.table.masked.instruction = color.palette.lavender
color.bg.plugin.instructionsearch.table.masked.non.instruction = color.palette.cornsilk
color.bg.plugin.instructionsearch.table.not.masked.instruction = color.palette.lightsteelblue
color.bg.plugin.instructionsearch.table.not.masked.non.instruction = color.palette.tan
color.bg.plugin.locationreferences.highlight = color.palette.lightcornflowerblue
color.bg.plugin.myprogramchangesdisplay.markers.changes.conflicting = color.fg.error
color.bg.plugin.myprogramchangesdisplay.markers.changes.latest.version = color.palette.blue
color.bg.plugin.myprogramchangesdisplay.markers.changes.not.checked.in = color.palette.green
color.bg.plugin.myprogramchangesdisplay.markers.changes.unsaved = color.palette.darkgray
color.bg.plugin.overview.address.data = color.palette.palegreen
color.bg.plugin.overview.address.external.ref = color.palette.lightcoral
color.bg.plugin.overview.address.function = color.palette.lightpurple
color.bg.plugin.overview.address.instruction = color.palette.lightcornflowerblue
color.bg.plugin.overview.address.undefined = color.palette.red
color.bg.plugin.overview.address.uninitialized = color.palette.black
color.bg.plugin.overview.defalt = color.palette.gray
color.bg.plugin.overview.entropy.knot.1 = color.palette.red
color.bg.plugin.overview.entropy.knot.2 = color.palette.blue
color.bg.plugin.overview.entropy.knot.3 = color.palette.green
color.bg.plugin.overview.entropy.knot.4 = color.palette.yellow
color.bg.plugin.overview.entropy.knot.5 = color.palette.blue
color.bg.plugin.overview.entropy.palette.base.high = color.palette.white
color.bg.plugin.overview.entropy.palette.base.low = color.palette.black
color.bg.plugin.overview.entropy.uninitialized = color.palette.blue
color.bg.plugin.programdiff.highlight = color.bg.highlight.listing.diff
color.bg.plugin.programgraph.edge.call.callother.override = #F70047 // Red
color.bg.plugin.programgraph.edge.call.computed = #00ffff // Cyan
color.bg.plugin.programgraph.edge.call.computed.terminator = #800080 // Purple
color.bg.plugin.programgraph.edge.call.conditional = #ff8c00 // DarkOrange
color.bg.plugin.programgraph.edge.call.conditional.computed = #00ffff // Cyan
color.bg.plugin.programgraph.edge.call.conditional.terminator = #800080 // Purple
color.bg.plugin.programgraph.edge.call.unconditional = #ff8c00 // DarkOrange
color.bg.plugin.programgraph.edge.call.unconditional.override = #F70047 // Red
color.bg.plugin.programgraph.edge.conditional.terminator = #800080 // Purple
color.bg.plugin.programgraph.edge.data.indirect = #ff8c00 // DarkOrange
color.bg.plugin.programgraph.edge.data.unknown = #000000 // Black
color.bg.plugin.programgraph.edge.default = #F70047 // Red
color.bg.plugin.programgraph.edge.entry = #808080 // Gray
color.bg.plugin.programgraph.edge.external.ref = #800080 // Purple
color.bg.plugin.programgraph.edge.fall.through = #0000ff // Blue
color.bg.plugin.programgraph.edge.indirection = #ffc0cb // Pink
color.bg.plugin.programgraph.edge.jump.callother.override = #F70047 // Red
color.bg.plugin.programgraph.edge.jump.computed = #00ffff // Cyan
color.bg.plugin.programgraph.edge.jump.conditional = #b8860b // DarkGoldenRod
color.bg.plugin.programgraph.edge.jump.conitional.computed = #00ffff // Cyan
color.bg.plugin.programgraph.edge.jump.terminator = #800080 // Purple
color.bg.plugin.programgraph.edge.jump.unconditional = #00FF7D // DarkGreen
color.bg.plugin.programgraph.edge.jump.unconditional.override = #F70047 // Red
color.bg.plugin.programgraph.edge.param = #00ffff // Cyan
color.bg.plugin.programgraph.edge.read = #008000 // Green
color.bg.plugin.programgraph.edge.read.indirect = #00FF7D // DarkGreen
color.bg.plugin.programgraph.edge.read.write = #b8860b // DarkGoldenRod
color.bg.plugin.programgraph.edge.read.write.indirect = #a52a2a // Brown
color.bg.plugin.programgraph.edge.selection = color.graphdisplay.edge.selected
color.bg.plugin.programgraph.edge.terminator = #800080 // Purple
color.bg.plugin.programgraph.edge.thunk = #0000ff // Blue
color.bg.plugin.programgraph.edge.write = #F70047 // Red
color.bg.plugin.programgraph.edge.write.indirect = color.palette.darkred
color.bg.plugin.programgraph.vertex.bad = #F70047 // Red
color.bg.plugin.programgraph.vertex.body = #0000ff // Blue
color.bg.plugin.programgraph.vertex.data = #ffc0cb // Pink
color.bg.plugin.programgraph.vertex.default = #F70047 // Red
color.bg.plugin.programgraph.vertex.entry = #ff8c00 // DarkOrange
color.bg.plugin.programgraph.vertex.entry.nexus = #f5deb3 // Wheat
color.bg.plugin.programgraph.vertex.exit = #8b008b // DarkMagenta
color.bg.plugin.programgraph.vertex.external = #00FF7D // DarkGreen
color.bg.plugin.programgraph.vertex.instruction = #0000ff // Blue
color.bg.plugin.programgraph.vertex.selection = color.graphdisplay.vertex.selected
color.bg.plugin.programgraph.vertex.stack = #008000 // Green
color.bg.plugin.programgraph.vertex.switch = #008b8b // DarkCyan
color.bg.plugin.references.table.active.operand = color.palette.lightgray
color.bg.plugin.register.marker = color.palette.darkcyan
color.bg.plugin.terminal = #000000 // Black
color.bg.plugin.windowlocation = color.palette.black
color.bg.plugin.windowlocation.bounds.virtual = color.palette.red
color.bg.plugin.windowlocation.bounds.visible = color.palette.green
color.bg.plugin.windowlocation.screens = color.palette.orange
color.bg.plugin.windowlocation.window.selected = color.palette.lime
color.bg.project.access.panel.table.selection = color.palette.lavender
color.bg.search.highlight = color.bg.highlight
color.bg.search.highlight.current.line = color.palette.yellow
color.bg.selection = color.palette.palegreen
color.bg.selection.listing = color.bg.selection
color.bg.splash.infopanel = color.bg
color.bg.splashscreen = #000000 // Black
color.bg.table.grid = color.palette.gray
color.bg.table.row = color.bg
color.bg.table.row.alt = color.palette.aliceblue
color.bg.table.row.drag = color.palette.lavender
color.bg.table.selection.bundle = [color]system.color.bg.selected.view
color.bg.textfield.hint.invalid = color.palette.mistyrose
color.bg.textfield.hint.valid = color.bg
color.bg.tree = [color]system.color.bg.view
color.bg.tree.drag = color.palette.lavender
color.bg.tree.selected = [color]system.color.bg.selected.view
color.bg.undefined = #3a2a48
color.bg.uneditable = [color]system.color.bg.control
color.bg.version.tracking.dual.listing.highlight.markup.applied = color.palette.lightgreen
color.bg.version.tracking.dual.listing.highlight.markup.conflict = color.palette.gold
color.bg.version.tracking.dual.listing.highlight.markup.failed = color.palette.red
color.bg.version.tracking.dual.listing.highlight.markup.ignored = color.palette.lightgray
color.bg.version.tracking.dual.listing.highlight.markup.no.address = color.palette.lavender
color.bg.version.tracking.dual.listing.highlight.markup.rejected = color.palette.pink
color.bg.version.tracking.dual.listing.highlight.markup.same = color.palette.lightskyblue
color.bg.version.tracking.dual.listing.highlight.markup.unapplied = color.palette.orange
color.bg.version.tracking.filter.formatted.field.editing = color.bg.filterfield
color.bg.version.tracking.filter.formatted.field.error = color.palette.lightgray
color.bg.version.tracking.match.table.locked.out = color.palette.aliceblue
color.bg.version.tracking.match.table.markup.status.applied = color.palette.limegreen
color.bg.version.tracking.match.table.markup.status.dont.care = color.palette.cornflowerblue
color.bg.version.tracking.match.table.markup.status.dont.know = color.palette.orange
color.bg.version.tracking.match.table.markup.status.rejected = color.palette.red
color.bg.version.tracking.match.table.markup.status.tooltip.unexamined = color.palette.black
color.bg.version.tracking.related.matches.table.bad = color.palette.red
color.bg.version.tracking.related.matches.table.good = color.palette.green
color.bg.version.tracking.related.matches.table.medium = color.palette.yellow
color.bg.visualgraph = color.bg
color.bg.visualgraph.dockingvertex = color.palette.darkcyan
color.bg.visualgraph.drop.shadow.dark = color.palette.black
color.bg.visualgraph.drop.shadow.light = color.palette.gray
color.bg.visualgraph.message = color.palette.lightcornflowerblue
color.bg.visualgraph.satellite.vertex = color.palette.darkcyan
color.bg.widget.tabs.highlighted = color.palette.lightcornflowerblue
color.bg.widget.tabs.list = [color]system.color.bg.tooltip
color.bg.widget.tabs.more.tabs.hover = color.bg.widget.tabs.selected
color.bg.widget.tabs.selected = [color]system.color.bg.selected.view
color.bg.widget.tabs.unselected = [color]system.color.bg.control
color.border.bevel.highlight = color.palette.lightgray
color.border.bevel.shadow = color.palette.gray
color.border.button.focused = [color]system.color.bg.selected.view
color.border.provider.disconnected = color.palette.orange
color.bsim.graph.controlflow.vertex.base = color.palette.aliceblue
color.bsim.graph.controlflow.vertex.child = color.palette.purple
color.bsim.graph.controlflow.vertex.grandparent = color.palette.darkgreen
color.bsim.graph.controlflow.vertex.neighbor = color.palette.cornsilk
color.bsim.graph.controlflow.vertex.parent = color.palette.lightgreen
color.bsim.graph.controlflow.vertex.sibling = color.palette.blue
color.bsim.graph.dataflow.vertex.base = color.palette.black
color.bsim.graph.dataflow.vertex.base.2 = color.palette.darkgray
color.bsim.graph.dataflow.vertex.pcode.op = color.palette.red
color.bsim.graph.dataflow.vertex.pcode.op.collapsed = color.palette.lightskyblue
color.bsim.graph.dataflow.vertex.varnode.collapsed = color.palette.lightskyblue
color.bsim.graph.edge.controlflow.false = color.palette.red
color.bsim.graph.edge.controlflow.true = color.palette.green
color.bsim.graph.edge.dataflow.in = color.palette.lemonchiffon
color.bsim.graph.edge.dataflow.in.collapsed = color.palette.lightgray
color.bsim.graph.edge.dataflow.out = color.palette.saddlebrown
color.bsim.graph.edge.dataflow.out.collapsed = color.palette.darkgray
color.bsim.graph.edge.default = color.palette.black
color.bsim.graph.edge.selection = color.palette.gold
color.bsim.graph.vertex.default = color.palette.lightgray
color.bsim.graph.vertex.selection = color.palette.gold
color.cursor.byteviewer.focused.active = color.cursor.focused
color.cursor.byteviewer.focused.not.active = #9200ff // Gray
color.cursor.byteviewer.unfocused = color.cursor.unfocused
color.cursor.focused = color.palette.red
color.cursor.focused.listing = color.cursor.focused
color.cursor.focused.terminal = color.cursor.focused
color.cursor.unfocused = color.palette.darkgray
color.cursor.unfocused.listing = color.cursor.unfocused
color.cursor.unfocused.terminal = color.cursor.unfocused
color.debugger.plugin.memview.box = color.palette.blue
color.debugger.plugin.memview.box.type.breakpoint = color.palette.red
color.debugger.plugin.memview.box.type.heap.alloc = color.palette.darkgreen
color.debugger.plugin.memview.box.type.heap.create = color.palette.blue
color.debugger.plugin.memview.box.type.image = color.palette.magenta
color.debugger.plugin.memview.box.type.instructions = color.palette.darkred
color.debugger.plugin.memview.box.type.module = color.palette.lime
color.debugger.plugin.memview.box.type.perfinfo = color.palette.lightgray
color.debugger.plugin.memview.box.type.pool = color.palette.indigo
color.debugger.plugin.memview.box.type.process = color.palette.lightcornflowerblue
color.debugger.plugin.memview.box.type.read.memory = color.palette.darkgray
color.debugger.plugin.memview.box.type.region = color.palette.yellow
color.debugger.plugin.memview.box.type.stack = color.palette.cyan
color.debugger.plugin.memview.box.type.thread = color.palette.lightskyblue
color.debugger.plugin.memview.box.type.virtual.alloc = color.palette.lightgray
color.debugger.plugin.memview.box.type.write.memory = color.palette.blue
color.debugger.plugin.plugin.memview.arrow = color.palette.red
color.debugger.plugin.resources.breakpoint.marker.disabled = color.debugger.plugin.resources.breakpoint.marker.enabled
color.debugger.plugin.resources.breakpoint.marker.disabled.ineffective = color.debugger.plugin.resources.breakpoint.marker.enabled.ineffective
color.debugger.plugin.resources.breakpoint.marker.enabled = color.palette.lightsteelblue
color.debugger.plugin.resources.breakpoint.marker.enabled.ineffective = color.palette.silver
color.debugger.plugin.resources.pcode.counter = color.palette.palegreen
color.debugger.plugin.resources.register.changed = color.fg.debugger.value.changed
color.debugger.plugin.resources.register.changed.selected = color.fg.debugger.value.changed.selected
color.debugger.plugin.resources.register.marker = color.palette.palegreen
color.debugger.plugin.resources.register.stale = color.fg.debugger.value.stale
color.debugger.plugin.resources.register.stale.selected = color.fg.debugger.value.stale.selected
color.debugger.plugin.resources.value.changed = color.palette.red
color.debugger.plugin.resources.value.changed.selected = color.palette.lightcoral
color.debugger.plugin.resources.watch.changed = color.fg.debugger.value.changed
color.debugger.plugin.resources.watch.changed.selected = color.fg.debugger.value.changed.selected
color.debugger.plugin.resources.watch.stale = color.fg.debugger.value.stale
color.debugger.plugin.resources.watch.stale.selected = color.fg.debugger.value.stale.selected
color.fg = [color]system.color.fg.view
color.fg.analysis.options.prototype = color.palette.crimson
color.fg.analysis.options.prototype.selected = color.palette.crimson
color.fg.button = color.palette.black
color.fg.byteviewer.changed = #cd5c5c // IndianRed
color.fg.byteviewer.separator = color.palette.blue
color.fg.consoletextpane = color.fg
color.fg.debugger.plugin.objects.accessor = color.palette.lightgray
color.fg.debugger.plugin.objects.default = color.fg
color.fg.debugger.plugin.objects.error = color.fg.error
color.fg.debugger.plugin.objects.intrinsic = color.palette.blue
color.fg.debugger.plugin.objects.invalidated = color.palette.lightgray
color.fg.debugger.plugin.objects.invisible = color.palette.lightgray
color.fg.debugger.plugin.objects.link = color.palette.green
color.fg.debugger.plugin.objects.modified = color.palette.red
color.fg.debugger.plugin.objects.subscribed = color.fg
color.fg.debugger.plugin.objects.target = color.palette.magenta
color.fg.debugger.value.changed = color.palette.red
color.fg.debugger.value.changed.selected = color.palette.lightcoral
color.fg.debugger.value.stale = color.palette.gray
color.fg.debugger.value.stale.selected = color.palette.lightgray
color.fg.decompiler = color.fg
color.fg.decompiler.comment = color.palette.blueviolet
color.fg.decompiler.constant = color.palette.green
color.fg.decompiler.error = color.palette.crimson
color.fg.decompiler.function.name = color.palette.blue
color.fg.decompiler.global = color.palette.darkcyan
color.fg.decompiler.keyword = color.palette.blue
color.fg.decompiler.parameter = color.palette.purple
color.fg.decompiler.special = color.palette.crimson
color.fg.decompiler.type = color.palette.blue
color.fg.decompiler.variable = color.palette.olive
color.fg.dialog.equates.equate = color.palette.blue
color.fg.dialog.equates.equate.bad = color.fg.error
color.fg.dialog.equates.equate.selected = color.fg
color.fg.dialog.equates.suggestion = color.palette.hint
color.fg.dialog.status.alert = color.fg.messages.alert
color.fg.dialog.status.error = color.fg.messages.error
color.fg.dialog.status.normal = color.fg.messages.normal
color.fg.dialog.status.warning = color.fg.messages.warning
color.fg.disabled = color.palette.lightgray
color.fg.error = color.palette.red
color.fg.error.consoletextpane = color.fg.error
color.fg.error.table.selected = color.palette.lightpink
color.fg.error.table.unselected = color.fg.error
color.fg.extensionpanel.details.author = color.palette.blue
color.fg.extensionpanel.details.date = color.palette.blue
color.fg.extensionpanel.details.description = color.palette.blue
color.fg.extensionpanel.details.name = color.palette.limegreen
color.fg.extensionpanel.details.title = color.palette.maroon
color.fg.extensionpanel.details.version = color.palette.blue
color.fg.extensionpanel.path = color.palette.blue
color.fg.fieldpanel = color.fg
color.fg.filechooser = color.fg
color.fg.filterfield = color.palette.darkslategray
color.fg.header.active = [color]system.color.fg.selected.view
color.fg.header.inactive = color.palette.black
color.fg.help.selector.code = color.palette.black
color.fg.help.selector.code.path = color.palette.steelblue
color.fg.help.selector.h1 = color.palette.navy
color.fg.help.selector.h2 = color.palette.darkred
color.fg.help.selector.h3 = color.palette.blue
color.fg.help.selector.p.provided.by.plugin = color.palette.gray
color.fg.help.selector.p.related.topic = color.palette.purple
color.fg.help.selector.th = color.palette.aliceblue
color.fg.infopanel.version = color.fg
color.fg.interpreterconsole = color.fg
color.fg.interpreterconsole.error = color.fg.error
color.fg.listing.address = color.fg
color.fg.listing.array.values = color.fg
color.fg.listing.block.start = color.palette.indigo
color.fg.listing.bytes = color.palette.blue
color.fg.listing.bytes.alignment = color.palette.gray
color.fg.listing.bytes.entropy = color.fg
color.fg.listing.comment.auto = color.palette.lightgray
color.fg.listing.comment.eol = color.palette.blue
color.fg.listing.comment.plate = color.palette.gray
color.fg.listing.comment.post = color.palette.blue
color.fg.listing.comment.pre = color.palette.indigo
color.fg.listing.comment.ref.repeatable = color.palette.cornflowerblue
color.fg.listing.comment.repeatable = color.palette.darkorange
color.fg.listing.constant = color.palette.green
color.fg.listing.disassembly.external = color.fg
color.fg.listing.ext.entrypoint = color.palette.magenta
color.fg.listing.ext.ref.resolved = color.palette.teal
color.fg.listing.ext.ref.unresolved = color.fg.listing.ref.bad
color.fg.listing.fieldname = color.fg
color.fg.listing.file.offset = color.fg
color.fg.listing.flow.arrow.active = color.fg
color.fg.listing.flow.arrow.inactive = color.palette.lightgray
color.fg.listing.flow.arrow.selected = color.palette.limegreen
color.fg.listing.function.callfixup = color.palette.magenta
color.fg.listing.function.name = color.palette.blue
color.fg.listing.function.name.thunk = color.fg.listing.function.name
color.fg.listing.function.param = color.fg
color.fg.listing.function.param.auto = color.palette.gray
color.fg.listing.function.param.custom = color.palette.indigo
color.fg.listing.function.param.dynamic = color.palette.teal
color.fg.listing.function.purge = color.palette.blue
color.fg.listing.function.return.type = color.fg
color.fg.listing.function.source = color.fg
color.fg.listing.function.tag = color.palette.purple
color.fg.listing.function.variable = color.palette.purple
color.fg.listing.function.variable.assigned = color.palette.purple
color.fg.listing.header.active.field = color.fg
color.fg.listing.instruction.parallel = color.palette.blue
color.fg.listing.label.local = color.palette.green
color.fg.listing.label.non.primary = color.palette.olive
color.fg.listing.label.primary = color.palette.blue
color.fg.listing.label.unreferenced = color.fg
color.fg.listing.mask.bits = color.palette.navy
color.fg.listing.mask.label = color.fg
color.fg.listing.mask.value = color.palette.green
color.fg.listing.mnemonic = color.palette.navy
color.fg.listing.mnemonic.override = color.palette.magenta
color.fg.listing.mnemonic.unimplemented = color.palette.navy
color.fg.listing.pcode.address.space = color.palette.blue
color.fg.listing.pcode.label = color.palette.blue
color.fg.listing.pcode.userop = color.palette.blue
color.fg.listing.pcode.varnode = color.palette.blue
color.fg.listing.ref.bad = color.fg.error
color.fg.listing.register = color.palette.olive
color.fg.listing.separator = color.fg
color.fg.listing.stack.depth = color.palette.blue
color.fg.listing.tabs.list = color.fg
color.fg.listing.tabs.text.selected = [color]system.color.fg.selected.view
color.fg.listing.tabs.text.unselected = color.fg
color.fg.listing.taint = color.fg
color.fg.listing.underline = color.palette.cornflowerblue
color.fg.listing.xref = color.palette.darkgreen
color.fg.listing.xref.offcut = color.palette.gray
color.fg.listing.xref.other = color.fg
color.fg.listing.xref.read = color.palette.blue
color.fg.listing.xref.write = color.palette.darkorange
color.fg.logviewer.table = color.palette.black
color.fg.logviewer.table.selected = color.palette.black
color.fg.messages.alert = color.palette.orange
color.fg.messages.error = color.fg.error
color.fg.messages.hint = color.palette.hint
color.fg.messages.normal = color.palette.blue
color.fg.messages.warning = color.palette.orange
color.fg.plugin.assembler.completion.least = color.palette.green
color.fg.plugin.assembler.completion.middle = color.palette.navy
color.fg.plugin.assembler.completion.most = color.palette.blue
color.fg.plugin.comments.history.date = color.palette.darkred
color.fg.plugin.comments.history.text = color.palette.blue
color.fg.plugin.comments.history.user = color.fg
color.fg.plugin.disassembledview.address = color.fg
color.fg.plugin.equate.user.defined = color.palette.blue
color.fg.plugin.function.editor.dialog.textfield.default = color.fg
color.fg.plugin.function.editor.dialog.textfield.error = color.fg.error
color.fg.plugin.function.editor.dialog.textfield.function.name = color.palette.blue
color.fg.plugin.function.editor.dialog.textfield.parameter = color.fg.listing.function.param
color.fg.plugin.functiongraph.label.non.picked = color.fg.disabled
color.fg.plugin.functiongraph.label.picked = color.fg
color.fg.plugin.installer.table.has.dependents = color.palette.red
color.fg.plugin.installer.table.has.dependents.selected = color.palette.pink
color.fg.plugin.interpreter.renderer.color.intense.1 = color.palette.darkgray
color.fg.plugin.interpreter.renderer.color.intense.2 = color.palette.red
color.fg.plugin.interpreter.renderer.color.intense.3 = color.palette.lime
color.fg.plugin.interpreter.renderer.color.intense.4 = color.palette.yellow
color.fg.plugin.interpreter.renderer.color.intense.5 = color.palette.blue
color.fg.plugin.interpreter.renderer.color.intense.6 = color.palette.magenta
color.fg.plugin.interpreter.renderer.color.intense.7 = color.palette.cyan
color.fg.plugin.interpreter.renderer.color.intense.8 = color.palette.white
color.fg.plugin.interpreter.renderer.color.standard.1 = color.palette.black
color.fg.plugin.interpreter.renderer.color.standard.2 = color.palette.maroon
color.fg.plugin.interpreter.renderer.color.standard.3 = color.palette.limegreen
color.fg.plugin.interpreter.renderer.color.standard.4 = color.palette.darkkhaki
color.fg.plugin.interpreter.renderer.color.standard.5 = color.palette.blue
color.fg.plugin.interpreter.renderer.color.standard.6 = color.palette.magenta
color.fg.plugin.interpreter.renderer.color.standard.7 = color.palette.cyan
color.fg.plugin.interpreter.renderer.color.standard.8 = color.palette.lightgray
color.fg.plugin.programdiff.details.address = color.palette.teal
color.fg.plugin.programdiff.details.comment = color.palette.green
color.fg.plugin.programdiff.details.danger = color.fg.error
color.fg.plugin.programdiff.details.emphasize = color.palette.green
color.fg.plugin.programdiff.details.program = color.palette.purple
color.fg.plugin.python.syntax.class = color.palette.blue
color.fg.plugin.python.syntax.code = color.palette.darkgreen
color.fg.plugin.python.syntax.function = color.palette.green
color.fg.plugin.python.syntax.instance = color.palette.purple
color.fg.plugin.python.syntax.map = color.palette.steelblue
color.fg.plugin.python.syntax.method = color.palette.teal
color.fg.plugin.python.syntax.null = color.palette.red
color.fg.plugin.python.syntax.number = color.palette.darkgray
color.fg.plugin.python.syntax.package = color.palette.darkred
color.fg.plugin.python.syntax.sequence = color.palette.saddlebrown
color.fg.plugin.python.syntax.special = color.palette.darkgreen
color.fg.plugin.terminal = #cbcccd
color.fg.plugin.terminal.bright.black = #818383
color.fg.plugin.terminal.bright.blue = #5833ff
color.fg.plugin.terminal.bright.cyan = #14f0f0
color.fg.plugin.terminal.bright.green = #31e722
color.fg.plugin.terminal.bright.magenta = #f935f8
color.fg.plugin.terminal.bright.red = #fc391f
color.fg.plugin.terminal.bright.white = #e9ebeb
color.fg.plugin.terminal.bright.yellow = #eaec23
color.fg.plugin.terminal.normal.black = #000000 // Black
color.fg.plugin.terminal.normal.blue = #492eff
color.fg.plugin.terminal.normal.cyan = #33bbc8
color.fg.plugin.terminal.normal.green = #25bc24
color.fg.plugin.terminal.normal.magenta = #d338d3
color.fg.plugin.terminal.normal.red = #c23621
color.fg.plugin.terminal.normal.white = #cbcccd
color.fg.plugin.terminal.normal.yellow = #adad27
color.fg.plugin.windowlocation.window.text = color.palette.gray
color.fg.pluginpanel.description = color.palette.gray
color.fg.pluginpanel.details.category = color.palette.magenta
color.fg.pluginpanel.details.class = color.palette.black
color.fg.pluginpanel.details.dependency = color.palette.green
color.fg.pluginpanel.details.description = color.palette.blue
color.fg.pluginpanel.details.developer = color.palette.magenta
color.fg.pluginpanel.details.loc = color.palette.darkgray
color.fg.pluginpanel.details.name.has.dependents = color.palette.red
color.fg.pluginpanel.details.name.no.dependents = color.palette.limegreen
color.fg.pluginpanel.details.novalue = color.palette.lightgray
color.fg.pluginpanel.details.title = color.palette.maroon
color.fg.pluginpanel.name = color.fg
color.fg.project.access.panel.table.selection = color.palette.black
color.fg.splashscreen = #808080 // Gray
color.fg.table.bundle.active = color.palette.green
color.fg.table.bundle.busy = color.palette.gray
color.fg.table.bundle.disabled = color.palette.darkgray
color.fg.table.bundle.inactive = color.palette.black
color.fg.table.offcut.selected = color.palette.pink
color.fg.table.offcut.unselected = color.fg.error
color.fg.table.selection.bundle = [color]system.color.fg.selected.view
color.fg.table.uneditable.selected = color.palette.yellow
color.fg.table.uneditable.unselected = color.palette.lightgray
color.fg.textfield.hint = color.fg.messages.hint
color.fg.tree.selected = [color]system.color.fg.selected.view
color.fg.version.tracking.filter.formatted.field.editing = color.fg.filterfield
color.fg.version.tracking.function.match.local.info = #008000 // Green
color.fg.version.tracking.markup.items.table.error = color.fg.error
color.fg.version.tracking.markup.items.table.user.defined.address = color.palette.cyan
color.fg.version.tracking.markup.items.table.user.defined.address.selected = color.palette.darkcyan
color.fg.version.tracking.match.table.error = color.fg.error
color.fg.version.tracking.tooltip = color.palette.gray
color.fg.visualgraph.dockingvertex = color.palette.black
color.fg.widget.tabs.list = color.fg
color.fg.widget.tabs.selected = [color]system.color.fg.selected.view
color.fg.widget.tabs.unselected = color.fg
color.flowtype.fall.through = color.palette.red
color.flowtype.jump.conditional = color.palette.green
color.flowtype.jump.unconditional = color.palette.blue
color.graphdisplay.edge.default = color.palette.green
color.graphdisplay.edge.selected = color.palette.blue
color.graphdisplay.vertex.default = color.palette.green
color.graphdisplay.vertex.selected = color.palette.blue
color.header.drag.cursor = color.palette.black
color.palette.aliceblue = #2d2f41
color.palette.black = #a9a9a9 // DarkGray
color.palette.blue = #18B6FF // LightSkyBlue
color.palette.blueviolet = #E92778 // Violet
color.palette.cornflowerblue = #6495ed // CornflowerBlue
color.palette.cornsilk = #fff8dc // Cornsilk
color.palette.crimson = #f08080 // LightCoral
color.palette.cyan = #5f9ea0 // CadetBlue
color.palette.darkcyan = #008b8b // DarkCyan
color.palette.darkgray = #9200ff // DimGray-inactive
color.palette.darkgreen = #70a070
color.palette.darkkhaki = #808000 // Olive
color.palette.darkorange = #ffa500 // Orange
color.palette.darkred = #fa8072 // Salmon
color.palette.darkslategray = #2f4f4f // DarkSlateGray
color.palette.dodgerblue = #1e90ff // DodgerBlue
color.palette.error = #cd5c5c // IndianRed
color.palette.gold = #ffd700 // Gold
color.palette.gray = #778899 // LightSlateGray
color.palette.green = #00FF7D
color.palette.greenyellow = #556b2f // DarkOliveGreen
color.palette.highlight.transparent.yellow = #fffacd40
color.palette.hint = #778899 // LightSlateGray
color.palette.indigo = #c070c0
color.palette.khaki = #d2b48c // Tan
color.palette.lavender = #9932cc // DarkOrchid
color.palette.lemonchiffon = #f0e68c // Khaki
color.palette.lightcoral = #713232
color.palette.lightcornflowerblue = #6495ed // CornflowerBlue
color.palette.lightgray = #4e4e4e
color.palette.lightgreen = #00FF7D // DarkGreen
color.palette.lightpink = #ffb6c1 // LightPink
color.palette.lightpurple = #805080
color.palette.lightskyblue = #26B3D2
color.palette.lightsteelblue = #2d3d5b
color.palette.lime = #3cb371 // MediumSeaGreen
color.palette.limegreen = #32cd32 // LimeGreen
color.palette.magenta = #FF92DF // Plum
color.palette.maroon = #f08080 // LightCoral
color.palette.mistyrose = #ffc0cb // Pink
color.palette.navy = #0EF3FF // LightBlue
color.palette.nocolor = #ffffff00
color.palette.olive = #FFFF55
color.palette.orange = #ffa070
color.palette.palegreen = #2f4f4f // DarkSlateGray
color.palette.pink = #ff80a0
color.palette.purple = #8700D9 // MediumPurple
color.palette.red = #9E0A52 // IndianRed
color.palette.saddlebrown = #deb887 // BurlyWood
color.palette.silver = #383838
color.palette.slateblue = #6a5acd // SlateBlue
color.palette.steelblue = #4682b4 // SteelBlue
color.palette.tan = #635542
color.palette.teal = #3cb371 // MediumSeaGreen
color.palette.white = #ffffff // White
color.palette.yellow = #ffe4b5 // Moccasin
color.palette.yellowgreen = #9acd32 // YellowGreen
color.visualgraph.dockingvertex.cursor = color.palette.red
color.visualgraph.view.primary.edge.draw = color.palette.green
color.visualgraph.view.primary.edge.focused = color.palette.green
color.visualgraph.view.primary.edge.hovered = color.palette.lime
color.visualgraph.view.primary.edge.selected = color.palette.lime
color.visualgraph.view.satellite.edge.draw = color.palette.green
color.visualgraph.view.satellite.edge.focused = color.palette.green
color.visualgraph.view.satellite.edge.hovered = color.palette.lime
color.visualgraph.view.satellite.edge.selected = color.palette.lime
[laf.color]Actions.GreyInline = [color]laf.palette.color.01
[laf.color]Button.background = [color]system.color.bg.control
[laf.color]Button.borderColor = [color]laf.palette.color.02
[laf.color]Button.darkShadow = [color]laf.palette.color.03
[laf.color]Button.default.background = [color]laf.palette.color.04
[laf.color]Button.default.borderColor = [color]laf.palette.color.05
[laf.color]Button.default.focusColor = [color]laf.palette.color.06
[laf.color]Button.default.focusedBorderColor = [color]laf.palette.color.07
[laf.color]Button.default.foreground = [color]system.color.fg.control
[laf.color]Button.default.hoverBackground = [color]laf.palette.color.08
[laf.color]Button.default.hoverBorderColor = [color]laf.palette.color.07
[laf.color]Button.default.pressedBackground = [color]laf.palette.color.09
[laf.color]Button.disabledBackground = [color]system.color.bg.border
[laf.color]Button.disabledBorderColor = [color]laf.palette.color.02
[laf.color]Button.disabledSelectedBackground = [color]laf.palette.color.10
[laf.color]Button.disabledText = [color]system.color.fg.disabled
[laf.color]Button.focusedBorderColor = [color]laf.palette.color.11
[laf.color]Button.foreground = [color]system.color.fg.control
[laf.color]Button.highlight = [color]laf.palette.color.12
[laf.color]Button.hoverBackground = [color]laf.palette.color.10
[laf.color]Button.hoverBorderColor = [color]laf.palette.color.11
[laf.color]Button.light = [color]laf.palette.color.13
[laf.color]Button.pressedBackground = [color]laf.palette.color.14
[laf.color]Button.selectedBackground = [color]laf.palette.color.15
[laf.color]Button.selectedForeground = [color]system.color.fg.control
[laf.color]Button.shadow = [color]laf.palette.color.16
[laf.color]Button.toolbar.hoverBackground = [color]laf.palette.color.17
[laf.color]Button.toolbar.pressedBackground = [color]laf.palette.color.18
[laf.color]Button.toolbar.selectedBackground = [color]laf.palette.color.19
[laf.color]CheckBox.background = [color]system.color.bg.border
[laf.color]CheckBox.disabledText = [color]system.color.fg.disabled
[laf.color]CheckBox.foreground = [color]system.color.fg.control
[laf.color]CheckBox.icon.background = [color]laf.palette.color.20
[laf.color]CheckBox.icon.borderColor = [color]laf.palette.color.21
[laf.color]CheckBox.icon.checkmarkColor = [color]laf.palette.color.22
[laf.color]CheckBox.icon.disabledBackground = [color]system.color.bg.border
[laf.color]CheckBox.icon.disabledBorderColor = [color]laf.palette.color.23
[laf.color]CheckBox.icon.disabledCheckmarkColor = [color]laf.palette.color.24
[laf.color]CheckBox.icon.focusedBackground = [color]laf.palette.color.25
[laf.color]CheckBox.icon.focusedBorderColor = [color]laf.palette.color.11
[laf.color]CheckBox.icon.hoverBackground = [color]laf.palette.color.26
[laf.color]CheckBox.icon.hoverBorderColor = [color]laf.palette.color.11
[laf.color]CheckBox.icon.pressedBackground = [color]laf.palette.color.27
[laf.color]CheckBox.icon.pressedBorderColor = [color]laf.palette.color.11
[laf.color]CheckBox.icon.selectedBackground = [color]laf.palette.color.20
[laf.color]CheckBox.icon.selectedBorderColor = [color]laf.palette.color.28
[laf.color]CheckBox.icon[filled].checkmarkColor = [color]laf.palette.color.20
[laf.color]CheckBox.icon[filled].hoverSelectedBackground = [color]laf.palette.color.29
[laf.color]CheckBox.icon[filled].pressedSelectedBackground = [color]laf.palette.color.30
[laf.color]CheckBox.icon[filled].selectedBackground = [color]laf.palette.color.22
[laf.color]CheckBox.icon[filled].selectedBorderColor = [color]laf.palette.color.22
[laf.color]CheckBoxMenuItem.acceleratorForeground = [color]laf.palette.color.31
[laf.color]CheckBoxMenuItem.acceleratorSelectionForeground = [color]system.color.fg.control
[laf.color]CheckBoxMenuItem.background = [color]laf.palette.color.32
[laf.color]CheckBoxMenuItem.disabledForeground = [color]system.color.fg.disabled
[laf.color]CheckBoxMenuItem.foreground = [color]system.color.fg.control
[laf.color]CheckBoxMenuItem.icon.checkmarkColor = [color]laf.palette.color.33
[laf.color]CheckBoxMenuItem.icon.disabledCheckmarkColor = [color]laf.palette.color.34
[laf.color]CheckBoxMenuItem.selectionBackground = [color]system.color.bg.selected.view
[laf.color]CheckBoxMenuItem.selectionForeground = [color]system.color.fg.control
[laf.color]ColorChooser.background = [color]system.color.bg.border
[laf.color]ColorChooser.foreground = [color]system.color.fg.selected.view
[laf.color]ColorChooser.swatchesDefaultRecentColor = [color]system.color.bg.border
[laf.color]ComboBox.background = [color]system.color.bg.view
[laf.color]ComboBox.buttonArrowColor = [color]laf.palette.color.33
[laf.color]ComboBox.buttonBackground = [color]laf.palette.color.20
[laf.color]ComboBox.buttonDarkShadow = [color]laf.palette.color.03
[laf.color]ComboBox.buttonDisabledArrowColor = [color]laf.palette.color.34
[laf.color]ComboBox.buttonDisabledSeparatorColor = [color]laf.palette.color.16
[laf.color]ComboBox.buttonEditableBackground = [color]laf.palette.color.35
[laf.color]ComboBox.buttonHighlight = [color]laf.palette.color.12
[laf.color]ComboBox.buttonHoverArrowColor = [color]laf.palette.color.36
[laf.color]ComboBox.buttonPressedArrowColor = [color]laf.palette.color.37
[laf.color]ComboBox.buttonSeparatorColor = [color]laf.palette.color.16
[laf.color]ComboBox.buttonShadow = [color]laf.palette.color.16
[laf.color]ComboBox.disabledBackground = [color]system.color.bg.border
[laf.color]ComboBox.disabledForeground = [color]system.color.fg.disabled
[laf.color]ComboBox.foreground = [color]system.color.fg.selected.view
[laf.color]ComboBox.selectionBackground = [color]system.color.bg.selected.view
[laf.color]ComboBox.selectionForeground = [color]system.color.fg.selected.view
[laf.color]Component.accentColor = [color]system.color.bg.selected.view
[laf.color]Component.borderColor = [color]laf.palette.color.16
[laf.color]Component.custom.borderColor = [color]laf.palette.color.38
[laf.color]Component.disabledBorderColor = [color]laf.palette.color.16
[laf.color]Component.error.borderColor = [color]laf.palette.color.39
[laf.color]Component.error.focusedBorderColor = [color]laf.palette.color.40
[laf.color]Component.focusColor = [color]laf.palette.color.41
[laf.color]Component.focusedBorderColor = [color]laf.palette.color.11
[laf.color]Component.linkColor = [color]laf.palette.color.42
[laf.color]Component.warning.borderColor = [color]laf.palette.color.43
[laf.color]Component.warning.focusedBorderColor = [color]laf.palette.color.44
[laf.color]Desktop.background = [color]laf.palette.color.45
[laf.color]DesktopIcon.background = [color]laf.palette.color.46
[laf.color]DesktopIcon.foreground = [color]system.color.fg.control
[laf.color]EditorPane.background = [color]system.color.bg.view
[laf.color]EditorPane.caretForeground = [color]system.color.fg.selected.view
[laf.color]EditorPane.disabledBackground = [color]system.color.bg.border
[laf.color]EditorPane.foreground = [color]system.color.fg.selected.view
[laf.color]EditorPane.inactiveBackground = [color]system.color.bg.border
[laf.color]EditorPane.inactiveForeground = [color]system.color.fg.disabled
[laf.color]EditorPane.selectionBackground = [color]system.color.bg.selected.view
[laf.color]EditorPane.selectionForeground = [color]system.color.fg.selected.view
[laf.color]FormattedTextField.background = [color]system.color.bg.view
[laf.color]FormattedTextField.caretForeground = [color]system.color.fg.selected.view
[laf.color]FormattedTextField.disabledBackground = [color]system.color.bg.border
[laf.color]FormattedTextField.foreground = [color]system.color.fg.selected.view
[laf.color]FormattedTextField.inactiveBackground = [color]system.color.bg.border
[laf.color]FormattedTextField.inactiveForeground = [color]system.color.fg.disabled
[laf.color]FormattedTextField.placeholderForeground = [color]system.color.fg.disabled
[laf.color]FormattedTextField.selectionBackground = [color]system.color.bg.selected.view
[laf.color]FormattedTextField.selectionForeground = [color]system.color.fg.selected.view
[laf.color]HelpButton.background = [color]system.color.bg.control
[laf.color]HelpButton.borderColor = [color]laf.palette.color.02
[laf.color]HelpButton.disabledBackground = [color]system.color.bg.border
[laf.color]HelpButton.disabledBorderColor = [color]laf.palette.color.02
[laf.color]HelpButton.disabledQuestionMarkColor = [color]laf.palette.color.47
[laf.color]HelpButton.focusedBorderColor = [color]laf.palette.color.11
[laf.color]HelpButton.hoverBackground = [color]laf.palette.color.10
[laf.color]HelpButton.hoverBorderColor = [color]laf.palette.color.11
[laf.color]HelpButton.pressedBackground = [color]laf.palette.color.14
[laf.color]HelpButton.questionMarkColor = [color]laf.palette.color.22
[laf.color]InternalFrame.activeBorderColor = [color]laf.palette.color.48
[laf.color]InternalFrame.activeTitleBackground = [color]laf.palette.color.49
[laf.color]InternalFrame.activeTitleForeground = [color]system.color.fg.control
[laf.color]InternalFrame.borderColor = [color]system.color.bg.border
[laf.color]InternalFrame.borderDarkShadow = [color]laf.palette.color.03
[laf.color]InternalFrame.borderHighlight = [color]laf.palette.color.12
[laf.color]InternalFrame.borderLight = [color]laf.palette.color.13
[laf.color]InternalFrame.borderShadow = [color]laf.palette.color.16
[laf.color]InternalFrame.buttonHoverBackground = [color]laf.palette.color.50
[laf.color]InternalFrame.buttonPressedBackground = [color]laf.palette.color.51
[laf.color]InternalFrame.closeHoverBackground = [color]laf.palette.color.52
[laf.color]InternalFrame.closeHoverForeground = [color]laf.palette.color.53
[laf.color]InternalFrame.closePressedBackground = [color]laf.palette.color.54
[laf.color]InternalFrame.closePressedForeground = [color]laf.palette.color.53
[laf.color]InternalFrame.inactiveBorderColor = [color]laf.palette.color.55
[laf.color]InternalFrame.inactiveTitleBackground = [color]laf.palette.color.56
[laf.color]InternalFrame.inactiveTitleForeground = [color]system.color.fg.disabled
[laf.color]Label.background = [color]system.color.bg.border
[laf.color]Label.disabledForeground = [color]system.color.fg.disabled
[laf.color]Label.disabledShadow = [color]laf.palette.color.16
[laf.color]Label.foreground = [color]system.color.fg.control
[laf.color]List.background = [color]system.color.bg.view
[laf.color]List.cellFocusColor = [color]laf.palette.color.57
[laf.color]List.dropCellBackground = [color]laf.palette.color.58
[laf.color]List.dropCellForeground = [color]system.color.fg.selected.view
[laf.color]List.dropLineColor = [color]laf.palette.color.57
[laf.color]List.foreground = [color]system.color.fg.selected.view
[laf.color]List.selectionBackground = [color]system.color.bg.selected.view
[laf.color]List.selectionForeground = [color]system.color.fg.selected.view
[laf.color]List.selectionInactiveBackground = [color]laf.palette.color.59
[laf.color]List.selectionInactiveForeground = [color]system.color.fg.selected.view
[laf.color]Menu.acceleratorForeground = [color]laf.palette.color.31
[laf.color]Menu.acceleratorSelectionForeground = [color]system.color.fg.control
[laf.color]Menu.background = [color]laf.palette.color.32
[laf.color]Menu.disabledForeground = [color]system.color.fg.disabled
[laf.color]Menu.foreground = [color]system.color.fg.control
[laf.color]Menu.icon.arrowColor = [color]laf.palette.color.33
[laf.color]Menu.icon.disabledArrowColor = [color]laf.palette.color.34
[laf.color]Menu.selectionBackground = [color]system.color.bg.selected.view
[laf.color]Menu.selectionForeground = [color]system.color.fg.control
[laf.color]MenuBar.background = [color]laf.palette.color.32
[laf.color]MenuBar.borderColor = [color]laf.palette.color.60
[laf.color]MenuBar.foreground = [color]system.color.fg.control
[laf.color]MenuBar.highlight = [color]laf.palette.color.12
[laf.color]MenuBar.hoverBackground = [color]laf.palette.color.61
[laf.color]MenuBar.shadow = [color]laf.palette.color.16
[laf.color]MenuItem.acceleratorForeground = [color]laf.palette.color.31
[laf.color]MenuItem.acceleratorSelectionForeground = [color]system.color.fg.control
[laf.color]MenuItem.background = [color]laf.palette.color.32
[laf.color]MenuItem.checkBackground = [color]laf.palette.color.58
[laf.color]MenuItem.disabledForeground = [color]system.color.fg.disabled
[laf.color]MenuItem.foreground = [color]system.color.fg.control
[laf.color]MenuItem.selectionBackground = [color]system.color.bg.selected.view
[laf.color]MenuItem.selectionForeground = [color]system.color.fg.control
[laf.color]MenuItem.underlineSelectionBackground = [color]laf.palette.color.61
[laf.color]MenuItem.underlineSelectionCheckBackground = [color]laf.palette.color.58
[laf.color]MenuItem.underlineSelectionColor = [color]laf.palette.color.62
[laf.color]OptionPane.background = [color]system.color.bg.border
[laf.color]OptionPane.foreground = [color]system.color.fg.control
[laf.color]Panel.background = [color]system.color.bg.border
[laf.color]Panel.foreground = [color]system.color.fg.control
[laf.color]PasswordField.background = [color]system.color.bg.view
[laf.color]PasswordField.capsLockIconColor = [color]laf.palette.color.63
[laf.color]PasswordField.caretForeground = [color]system.color.fg.selected.view
[laf.color]PasswordField.disabledBackground = [color]system.color.bg.border
[laf.color]PasswordField.foreground = [color]system.color.fg.selected.view
[laf.color]PasswordField.inactiveBackground = [color]system.color.bg.border
[laf.color]PasswordField.inactiveForeground = [color]system.color.fg.disabled
[laf.color]PasswordField.placeholderForeground = [color]system.color.fg.disabled
[laf.color]PasswordField.revealIconColor = [color]system.color.fg.selected.view
[laf.color]PasswordField.selectionBackground = [color]system.color.bg.selected.view
[laf.color]PasswordField.selectionForeground = [color]system.color.fg.selected.view
[laf.color]Popup.dropShadowColor = [color]laf.palette.color.64
[laf.color]PopupMenu.background = [color]laf.palette.color.32
[laf.color]PopupMenu.borderColor = [color]laf.palette.color.65
[laf.color]PopupMenu.foreground = [color]system.color.fg.control
[laf.color]PopupMenu.hoverScrollArrowBackground = [color]laf.palette.color.66
[laf.color]PopupMenu.scrollArrowColor = [color]laf.palette.color.33
[laf.color]ProgressBar.background = [color]laf.palette.color.67
[laf.color]ProgressBar.foreground = [color]laf.palette.color.62
[laf.color]ProgressBar.selectionBackground = [color]system.color.fg.control
[laf.color]ProgressBar.selectionForeground = [color]system.color.fg.control
[laf.color]RadioButton.background = [color]system.color.bg.border
[laf.color]RadioButton.darkShadow = [color]laf.palette.color.03
[laf.color]RadioButton.disabledText = [color]system.color.fg.disabled
[laf.color]RadioButton.foreground = [color]system.color.fg.control
[laf.color]RadioButton.highlight = [color]laf.palette.color.12
[laf.color]RadioButton.light = [color]laf.palette.color.13
[laf.color]RadioButton.shadow = [color]laf.palette.color.16
[laf.color]RadioButtonMenuItem.acceleratorForeground = [color]laf.palette.color.31
[laf.color]RadioButtonMenuItem.acceleratorSelectionForeground = [color]system.color.fg.control
[laf.color]RadioButtonMenuItem.background = [color]laf.palette.color.32
[laf.color]RadioButtonMenuItem.disabledForeground = [color]system.color.fg.disabled
[laf.color]RadioButtonMenuItem.foreground = [color]system.color.fg.control
[laf.color]RadioButtonMenuItem.selectionBackground = [color]system.color.bg.selected.view
[laf.color]RadioButtonMenuItem.selectionForeground = [color]system.color.fg.control
[laf.color]RootPane.activeBorderColor = [color]laf.palette.color.68
[laf.color]RootPane.background = [color]system.color.bg.border
[laf.color]RootPane.foreground = [color]system.color.fg.control
[laf.color]RootPane.inactiveBorderColor = [color]laf.palette.color.66
[laf.color]ScrollBar.background = [color]system.color.bg.border
[laf.color]ScrollBar.buttonArrowColor = [color]laf.palette.color.33
[laf.color]ScrollBar.buttonDisabledArrowColor = [color]laf.palette.color.34
[laf.color]ScrollBar.foreground = [color]system.color.fg.control
[laf.color]ScrollBar.hoverButtonBackground = [color]laf.palette.color.66
[laf.color]ScrollBar.hoverThumbColor = [color]laf.palette.color.69
[laf.color]ScrollBar.hoverTrackColor = [color]laf.palette.color.61
[laf.color]ScrollBar.pressedButtonBackground = [color]laf.palette.color.70
[laf.color]ScrollBar.pressedThumbColor = [color]laf.palette.color.71
[laf.color]ScrollBar.thumb = [color]laf.palette.color.72
[laf.color]ScrollBar.thumbDarkShadow = [color]laf.palette.color.03
[laf.color]ScrollBar.thumbHighlight = [color]laf.palette.color.12
[laf.color]ScrollBar.thumbShadow = [color]laf.palette.color.16
[laf.color]ScrollBar.track = [color]laf.palette.color.73
[laf.color]ScrollBar.trackHighlight = [color]laf.palette.color.03
[laf.color]ScrollPane.background = [color]laf.palette.color.73
[laf.color]ScrollPane.foreground = [color]system.color.fg.control
[laf.color]SearchField.clearIconColor = [color]laf.palette.color.74
[laf.color]SearchField.clearIconHoverColor = [color]laf.palette.color.74
[laf.color]SearchField.clearIconPressedColor = [color]laf.palette.color.75
[laf.color]SearchField.searchIconColor = [color]laf.palette.color.76
[laf.color]SearchField.searchIconHoverColor = [color]laf.palette.color.77
[laf.color]SearchField.searchIconPressedColor = [color]laf.palette.color.74
[laf.color]Separator.background = [color]system.color.bg.border
[laf.color]Separator.foreground = [color]laf.palette.color.60
[laf.color]Separator.highlight = [color]laf.palette.color.12
[laf.color]Separator.shadow = [color]laf.palette.color.16
[laf.color]Slider.background = [color]system.color.bg.border
[laf.color]Slider.disabledThumbColor = [color]laf.palette.color.70
[laf.color]Slider.disabledTrackColor = [color]laf.palette.color.70
[laf.color]Slider.focus = [color]laf.palette.color.03
[laf.color]Slider.focusedColor = [color]laf.palette.color.78
[laf.color]Slider.foreground = [color]system.color.fg.control
[laf.color]Slider.highlight = [color]laf.palette.color.12
[laf.color]Slider.hoverThumbColor = [color]laf.palette.color.79
[laf.color]Slider.pressedThumbColor = [color]laf.palette.color.80
[laf.color]Slider.shadow = [color]laf.palette.color.16
[laf.color]Slider.thumbColor = [color]laf.palette.color.62
[laf.color]Slider.tickColor = [color]system.color.fg.disabled
[laf.color]Slider.trackColor = [color]laf.palette.color.81
[laf.color]Slider.trackValueColor = [color]laf.palette.color.62
[laf.color]Spinner.background = [color]laf.palette.color.20
[laf.color]Spinner.buttonArrowColor = [color]laf.palette.color.33
[laf.color]Spinner.buttonBackground = [color]laf.palette.color.35
[laf.color]Spinner.buttonDisabledArrowColor = [color]laf.palette.color.34
[laf.color]Spinner.buttonDisabledSeparatorColor = [color]laf.palette.color.16
[laf.color]Spinner.buttonHoverArrowColor = [color]laf.palette.color.36
[laf.color]Spinner.buttonPressedArrowColor = [color]laf.palette.color.37
[laf.color]Spinner.buttonSeparatorColor = [color]laf.palette.color.16
[laf.color]Spinner.disabledBackground = [color]system.color.bg.border
[laf.color]Spinner.disabledForeground = [color]system.color.fg.disabled
[laf.color]Spinner.foreground = [color]system.color.fg.control
[laf.color]SplitPane.background = [color]system.color.bg.border
[laf.color]SplitPane.darkShadow = [color]laf.palette.color.03
[laf.color]SplitPane.highlight = [color]laf.palette.color.12
[laf.color]SplitPane.shadow = [color]laf.palette.color.16
[laf.color]SplitPaneDivider.draggingColor = [color]laf.palette.color.16
[laf.color]SplitPaneDivider.gripColor = [color]laf.palette.color.82
[laf.color]SplitPaneDivider.oneTouchArrowColor = [color]laf.palette.color.33
[laf.color]SplitPaneDivider.oneTouchHoverArrowColor = [color]laf.palette.color.36
[laf.color]SplitPaneDivider.oneTouchPressedArrowColor = [color]laf.palette.color.37
[laf.color]TabbedPane.background = [color]system.color.bg.border
[laf.color]TabbedPane.buttonHoverBackground = [color]laf.palette.color.32
[laf.color]TabbedPane.buttonPressedBackground = [color]laf.palette.color.83
[laf.color]TabbedPane.closeForeground = [color]system.color.fg.disabled
[laf.color]TabbedPane.closeHoverBackground = [color]laf.palette.color.66
[laf.color]TabbedPane.closeHoverForeground = [color]system.color.fg.control
[laf.color]TabbedPane.closePressedBackground = [color]laf.palette.color.70
[laf.color]TabbedPane.closePressedForeground = [color]system.color.fg.control
[laf.color]TabbedPane.contentAreaColor = [color]laf.palette.color.16
[laf.color]TabbedPane.darkShadow = [color]laf.palette.color.03
[laf.color]TabbedPane.disabledForeground = [color]system.color.fg.disabled
[laf.color]TabbedPane.disabledUnderlineColor = [color]laf.palette.color.84
[laf.color]TabbedPane.focus = [color]system.color.fg.control
[laf.color]TabbedPane.focusColor = [color]laf.palette.color.85
[laf.color]TabbedPane.foreground = [color]system.color.fg.control
[laf.color]TabbedPane.highlight = [color]laf.palette.color.12
[laf.color]TabbedPane.hoverColor = [color]laf.palette.color.32
[laf.color]TabbedPane.inactiveUnderlineColor = [color]laf.palette.color.86
[laf.color]TabbedPane.light = [color]laf.palette.color.13
[laf.color]TabbedPane.shadow = [color]system.color.bg.border
[laf.color]TabbedPane.underlineColor = [color]laf.palette.color.62
[laf.color]Table.background = [color]system.color.bg.view
[laf.color]Table.cellFocusColor = [color]laf.palette.color.57
[laf.color]Table.dropCellBackground = [color]laf.palette.color.58
[laf.color]Table.dropCellForeground = [color]system.color.fg.selected.view
[laf.color]Table.dropLineColor = [color]laf.palette.color.57
[laf.color]Table.dropLineShortColor = [color]laf.palette.color.87
[laf.color]Table.focusCellBackground = [color]system.color.bg.view
[laf.color]Table.focusCellForeground = [color]system.color.fg.selected.view
[laf.color]Table.foreground = [color]system.color.fg.selected.view
[laf.color]Table.gridColor = [color]laf.palette.color.88
[laf.color]Table.selectionBackground = [color]system.color.bg.selected.view
[laf.color]Table.selectionForeground = [color]system.color.fg.selected.view
[laf.color]Table.selectionInactiveBackground = [color]laf.palette.color.59
[laf.color]Table.selectionInactiveForeground = [color]system.color.fg.selected.view
[laf.color]Table.sortIconColor = [color]laf.palette.color.82
[laf.color]TableHeader.background = [color]laf.palette.color.20
[laf.color]TableHeader.bottomSeparatorColor = [color]laf.palette.color.89
[laf.color]TableHeader.focusCellBackground = [color]system.color.bg.view
[laf.color]TableHeader.foreground = [color]system.color.fg.control
[laf.color]TableHeader.hoverBackground = [color]laf.palette.color.90
[laf.color]TableHeader.pressedBackground = [color]laf.palette.color.89
[laf.color]TableHeader.separatorColor = [color]laf.palette.color.89
[laf.color]TextArea.background = [color]system.color.bg.view
[laf.color]TextArea.caretForeground = [color]system.color.fg.selected.view
[laf.color]TextArea.disabledBackground = [color]system.color.bg.border
[laf.color]TextArea.foreground = [color]system.color.fg.view
[laf.color]TextArea.inactiveBackground = [color]system.color.bg.border
[laf.color]TextArea.inactiveForeground = [color]system.color.fg.disabled
[laf.color]TextArea.selectionBackground = [color]system.color.bg.selected.view
[laf.color]TextArea.selectionForeground = [color]system.color.fg.selected.view
[laf.color]TextField.background = [color]system.color.bg.view
[laf.color]TextField.caretForeground = [color]system.color.fg.selected.view
[laf.color]TextField.darkShadow = [color]laf.palette.color.03
[laf.color]TextField.disabledBackground = [color]system.color.bg.border
[laf.color]TextField.foreground = [color]system.color.fg.selected.view
[laf.color]TextField.highlight = [color]laf.palette.color.12
[laf.color]TextField.inactiveBackground = [color]system.color.bg.border
[laf.color]TextField.inactiveForeground = [color]system.color.fg.disabled
[laf.color]TextField.light = [color]laf.palette.color.13
[laf.color]TextField.placeholderForeground = [color]system.color.fg.disabled
[laf.color]TextField.selectionBackground = [color]system.color.bg.selected.view
[laf.color]TextField.selectionForeground = [color]system.color.fg.selected.view
[laf.color]TextField.shadow = [color]laf.palette.color.16
[laf.color]TextPane.background = [color]system.color.bg.view
[laf.color]TextPane.caretForeground = [color]system.color.fg.selected.view
[laf.color]TextPane.disabledBackground = [color]system.color.bg.border
[laf.color]TextPane.foreground = [color]system.color.fg.view
[laf.color]TextPane.inactiveBackground = [color]system.color.bg.border
[laf.color]TextPane.inactiveForeground = [color]system.color.fg.disabled
[laf.color]TextPane.selectionBackground = [color]system.color.bg.selected.view
[laf.color]TextPane.selectionForeground = [color]system.color.fg.selected.view
[laf.color]TitlePane.background = [color]laf.palette.color.32
[laf.color]TitlePane.buttonHoverBackground = [color]laf.palette.color.91
[laf.color]TitlePane.buttonPressedBackground = [color]laf.palette.color.61
[laf.color]TitlePane.closeHoverBackground = [color]laf.palette.color.92
[laf.color]TitlePane.closeHoverForeground = [color]laf.palette.color.53
[laf.color]TitlePane.closePressedBackground = [color]laf.palette.color.93
[laf.color]TitlePane.closePressedForeground = [color]laf.palette.color.53
[laf.color]TitlePane.embeddedForeground = [color]laf.palette.color.31
[laf.color]TitlePane.foreground = [color]system.color.fg.control
[laf.color]TitlePane.inactiveBackground = [color]laf.palette.color.32
[laf.color]TitlePane.inactiveForeground = [color]system.color.fg.disabled
[laf.color]TitledBorder.titleColor = [color]system.color.fg.control
[laf.color]ToggleButton.background = [color]system.color.bg.control
[laf.color]ToggleButton.darkShadow = [color]laf.palette.color.03
[laf.color]ToggleButton.disabledBackground = [color]system.color.bg.border
[laf.color]ToggleButton.disabledSelectedBackground = [color]laf.palette.color.10
[laf.color]ToggleButton.disabledText = [color]system.color.fg.disabled
[laf.color]ToggleButton.foreground = [color]system.color.fg.control
[laf.color]ToggleButton.highlight = [color]laf.palette.color.12