-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathIntelliJPlatform.themeMetadata.json
2628 lines (2628 loc) · 80.8 KB
/
IntelliJPlatform.themeMetadata.json
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": "IntelliJ Platform",
"fixed": false,
"ui": [
{
"key": "ActionButton.separatorColor",
"description": "ActionButton separator line color",
"since": "2023.1"
},
{
"key": "Banner.infoBackground"
},
{
"key": "Banner.infoBorderColor"
},
{
"key": "Banner.successBackground"
},
{
"key": "Banner.successBorderColor"
},
{
"key": "Banner.warningBackground",
"description": "The background of banners (experimental UI only)"
},
{
"key": "Banner.warningBorderColor"
},
{
"key": "Banner.errorBackground"
},
{
"key": "Banner.errorBorderColor"
},
{
"key": "Bookmark.iconBackground",
"description": "The background of the default bookmark icon."
},
{
"key": "Bookmark.Mnemonic.iconForeground",
"description": "The text color on the bookmark icon with mnemonic."
},
{
"key": "Bookmark.Mnemonic.iconBackground",
"description": "The background of the bookmark icon with mnemonic.",
"deprecated": true
},
{
"key": "Bookmark.Mnemonic.iconBorderColor",
"description": "The border color of the bookmark icon with mnemonic.",
"deprecated": true
},
{
"key": "Bookmark.MnemonicAvailable.foreground",
"description": "The button text color for unassigned bookmark mnemonics."
},
{
"key": "Bookmark.MnemonicAvailable.background",
"description": "The button background for unassigned bookmark mnemonics."
},
{
"key": "Bookmark.MnemonicAvailable.borderColor",
"description": "The button border color for unassigned bookmark mnemonics."
},
{
"key": "Bookmark.MnemonicAssigned.foreground",
"description": "The button text color for already assigned bookmark mnemonics."
},
{
"key": "Bookmark.MnemonicAssigned.background",
"description": "The button background for already assigned bookmark mnemonics."
},
{
"key": "BookmarkMnemonicAssigned.borderColor",
"description": "The button border color for already assigned bookmark mnemonics.",
"deprecated": true
},
{
"key": "Bookmark.MnemonicCurrent.foreground",
"description": "The button text color for the currently selected bookmark mnemonic."
},
{
"key": "Bookmark.MnemonicCurrent.background",
"description": "The button background for the currently selected bookmark mnemonic."
},
{
"key": "BookmarkMnemonicCurrent.borderColor",
"description": "The button border color for the currently selected bookmark mnemonic.",
"deprecated": true
},
{
"key": "Breakpoint.iconHoverAlpha",
"description": "Transparency for breakpoint icon which pops up while hovering the gutter. A float in [0.0, 1.0]"
},
{
"key": "BigSpinner.background",
"description": "A translucent overlay background for decorated panel while loading"
},
{
"key": "Borders.color",
"description": "Used in tables, lists, toolbars, tool windows, editor split mode"
},
{
"key": "Borders.ContrastBorderColor",
"description": "Used in tool buttons bars and the navigation bar"
},
{
"key": "Button.minimumSize",
"description": "Minimum size of buttons"
},
{
"key": "Button.loadingForeground",
"description": "The color of button text when in the 'loading' state",
"since": "2024.2"
},
{
"key": "Button.default.loadingForeground",
"description": "The color of default button text when in the 'loading' state",
"since": "2024.2"
},
{
"key": "Button.Split.default.separatorColor",
"description": "Separator color for default split button"
},
{
"key": "Button.Split.default.iconColor",
"description": "Chevron arrow color for default split button"
},
{
"key": "CheckBox.iconSize",
"description": "Size of CheckBox icon"
},
{
"key": "ComboBox.minimumSize",
"description": "Minimum size of ComboBox"
},
{
"key": "Code.Inline.backgroundColor",
"description": "Inline code elements background",
"since": "2024.1"
},
{
"key": "Code.Inline.backgroundOpacity",
"description": "Inline code elements background opacity in percents",
"since": "2024.1"
},
{
"key": "Code.Inline.foregroundColor",
"description": "Inline code elements foreground",
"since": "2024.1"
},
{
"key": "Code.Inline.borderColor",
"description": "Inline code elements border color",
"since": "2024.1"
},
{
"key": "Code.Inline.borderWidth",
"description": "Inline code elements border width in pixels",
"since": "2024.1"
},
{
"key": "Code.Inline.borderRadius",
"description": "Inline code elements border radius in pixels",
"since": "2024.1"
},
{
"key": "Code.Block.backgroundColor",
"description": "Block code elements background",
"since": "2024.1"
},
{
"key": "Code.Block.backgroundOpacity",
"description": "Block code elements background opacity in percents",
"since": "2024.1"
},
{
"key": "Code.Block.EditorPane.backgroundColor",
"description": "Block code elements background in editor inline QuickDoc",
"since": "2024.1"
},
{
"key": "Code.Block.EditorPane.backgroundOpacity",
"description": "Block code elements background opacity in editor inline QuickDoc in percents",
"since": "2024.1"
},
{
"key": "Code.Block.EditorPane.borderColor",
"description": "Block code elements background in editor inline QuickDoc",
"since": "2024.1"
},
{
"key": "Code.Block.foregroundColor",
"description": "Block code elements foreground",
"since": "2024.1"
},
{
"key": "Code.Block.borderColor",
"description": "Block code elements border color",
"since": "2024.1"
},
{
"key": "Code.Block.borderWidth",
"description": "Block code elements border width in pixels",
"since": "2024.1"
},
{
"key": "Code.Block.borderRadius",
"description": "Block code elements border radius in pixels",
"since": "2024.1"
},
{
"key": "CombinedDiff.mainToolbarInsets",
"description": "Main toolbar insets of the Combined (All in One) Diff",
"since": "2023.3"
},
{
"key": "CombinedDiff.fileToolbarInsets",
"description": "File toolbar insets of the Combined (All in One) Diff",
"since": "2023.3"
},
{
"key": "CombinedDiff.gapBetweenBlocks",
"description": "Vertical gap between the Combined (All in One) Diff blocks",
"since": "2023.3"
},
{
"key": "CombinedDiff.leftRightBlockInset",
"description": "Horizontal insets around the Combined (All in One) Diff blocks",
"since": "2023.3"
},
{
"key": "CombinedDiff.BlockBorder.selectedActiveColor",
"description": "Active border color around current (selected) Combined (All in One) Diff block",
"since": "2023.3"
},
{
"key": "CombinedDiff.BlockBorder.selectedInactiveColor",
"description": "Inactive border color around current (selected) Combined (All in One) Diff block",
"since": "2023.3"
},
{
"key": "ComboPopup.border",
"description": "Combo box drop-down menu. Format: \"top, left, bottom, right, hex\", e.g. “1,1,1,1,FFFFFF\". Size in pixels"
},
{
"key": "CompletionPopup.Advertiser.background",
"description": "CompletionPopup advertiser background (experimental UI only)",
"since": "2022.2"
},
{
"key": "CompletionPopup.Advertiser.foreground",
"description": "CompletionPopup advertiser foreground (experimental UI only)",
"since": "2022.2"
},
{
"key": "CompletionPopup.Advertiser.fontSizeOffset",
"description": "CompletionPopup advertiser font size offset (experimental UI only)",
"since": "2022.2"
},
{
"key": "CompletionPopup.Advertiser.borderInsets",
"description": "CompletionPopup advertiser border insets (experimental UI only)",
"since": "2022.2"
},
{
"key": "CompletionPopup.background",
"deprecated": true,
"description": "Uses Documentation popup color from editor color scheme instead"
},
{
"key": "CompletionPopup.Body.insets",
"description": "Insets around body (experimental UI only). If bottom panel with advertiser is visible then BodyWithAdvertiser.insets is used instead",
"since": "2022.2"
},
{
"key": "CompletionPopup.BodyWithAdvertiser.insets",
"description": "Insets around body (experimental UI only). Used only when the advertiser (bottom panel) is visible",
"since": "2024.2"
},
{
"key": "CompletionPopup.infoForeground",
"description": "Uses Label.infoForeground instead",
"deprecated": true
},
{
"key": "CompletionPopup.matchForeground",
"description": "The string in the completion suggestions list that matches the entered string ",
"since": "2019.2"
},
{
"key": "CompletionPopup.matchSelectionForeground",
"description": "The string in the completion suggestions list that matches the entered string when selected",
"deprecated": true
},
{
"key": "CompletionPopup.nonFocusedState",
"description": "Show completion popup as grayed-out until focused. Boolean. Default is \"true\"",
"deprecated": true
},
{
"key": "CompletionPopup.foreground",
"description": "Gray text at the right border. Completion suggestions foreground is Label.foreground.",
"since": "2019.2"
},
{
"key": "CompletionPopup.nonFocusedMask",
"description": "Color mask with alpha to draw over not focused completion list",
"since": "2019.2"
},
{
"key": "CompletionPopup.selectionBackground",
"description": "Selected item background color of focused completion popup",
"since": "2019.2"
},
{
"key": "CompletionPopup.selectionForeground",
"description": "Not used, selection foreground doesn't change",
"deprecated": true
},
{
"key": "CompletionPopup.selectionInactiveBackground",
"description": "Selected item background color of non focused completion popup",
"since": "2019.2"
},
{
"key": "CompletionPopup.selectionInfoForeground",
"description": "Not used, selection foreground doesn't change",
"deprecated": true
},
{
"key": "CompletionPopup.selectionInnerInsets",
"description": "Inner insets in selection line (experimental UI only)",
"since": "2022.2"
},
{
"key": "DisclosureButton.arc",
"description": "Arc of disclosure button",
"since": "2024.2"
},
{
"key": "DisclosureButton.defaultBackground",
"description": "Background of disclosure button",
"since": "2024.2"
},
{
"key": "DisclosureButton.hoverOverlay",
"description": "Hover overlay color, which is painted over background for hover state",
"since": "2024.2"
},
{
"key": "DisclosureButton.pressedOverlay",
"description": "Pressed overlay color, which is painted over background for hover state",
"since": "2024.2"
},
{
"key": "DisclosureButton.textRightIconGap",
"description": "Gap between text and right icon",
"since": "2024.2"
},
{
"key": "FindPopup.scopesPanelInsets",
"description": "Inner insets of the scope selection panel in the Find in Files / Replace in Files popups",
"since": "2023.1.1"
},
{
"key": "FindPopup.bottomPanelInsets",
"description": "Inner insets of the bottom panel in the Find in Files / Replace in Files popups",
"since": "2023.1.1"
},
{
"key": "PresentationAssistant.Bright.Popup.foreground",
"description": "Presentation Assistant popup bright foreground (experimental UI only)",
"since": "2023.3"
},
{
"key": "PresentationAssistant.Bright.PopupBackground",
"description": "Presentation Assistant popup bright background (experimental UI only). PopupBackground name is used to not apply the '*.background' pattern default color",
"since": "2023.3"
},
{
"key": "PresentationAssistant.Bright.Popup.border",
"description": "Presentation Assistant popup bright border (experimental UI only)",
"since": "2023.3"
},
{
"key": "PresentationAssistant.Bright.keymapLabel",
"description": "Presentation Assistant keymap label bright text color (experimental UI only)",
"since": "2023.3"
},
{
"key": "PresentationAssistant.Pale.Popup.foreground",
"description": "Presentation Assistant popup pale foreground (experimental UI only)",
"since": "2023.3"
},
{
"key": "PresentationAssistant.Pale.PopupBackground",
"description": "Presentation Assistant popup pale background (experimental UI only)",
"since": "2023.3"
},
{
"key": "PresentationAssistant.Pale.Popup.border",
"description": "Presentation Assistant popup pale border (experimental UI only)",
"since": "2023.3"
},
{
"key": "PresentationAssistant.Pale.keymapLabel",
"description": "Presentation Assistant keymap label pale text color (experimental UI only)",
"since": "2023.3"
},
{
"key": "ContextHelp.fontSizeOffset",
"description": "Font size offset for comments (usually gray description text under components), used only in legacy UI",
"since": "2022.1",
"deprecated": true
},
{
"key": "Counter.background",
"description": "An oval with a number on the right of a tree item. For example, the number of updates in Plugins or problems in the Project Structure view."
},
{
"key": "Counter.foreground"
},
{
"key": "DebuggerPopup.borderColor",
"description": "A breakpoint popup that opens on right-click"
},
{
"key": "DebuggerTabs.fontSizeOffset",
"description": "Debugger tool window tab font size offset",
"since": "2024.1"
},
{
"key": "DebuggerTabs.selectedBackground",
"description": "Background of the selected tab in the Debugger tool window. The foreground is EditorTabs.underlinedTabForeground.",
"deprecated": true
},
{
"key": "DebuggerTabs.tabHeight",
"description": "Debugger tab height",
"since": "2023.1"
},
{
"key": "DebuggerTabs.underlineHeight",
"since": "2019.2"
},
{
"key": "DebuggerTabs.underlinedTabBackground",
"description": "Background for the selected tab",
"since": "2019.2"
},
{
"key": "Debugger.Variables.collectingDataForeground",
"since": "2019.2"
},
{
"key": "Debugger.Variables.evaluatingExpressionForeground",
"since": "2019.2"
},
{
"key": "Debugger.Variables.modifyingValueForeground",
"since": "2019.2"
},
{
"key": "Debugger.Variables.changedValueForeground",
"since": "2019.2"
},
{
"key": "Debugger.Variables.exceptionForeground",
"since": "2019.2"
},
{
"key": "Debugger.Variables.valueForeground",
"since": "2019.2"
},
{
"key": "Debugger.Variables.errorMessageForeground",
"since": "2019.2"
},
{
"key": "Debugger.Variables.typeForeground",
"description": "Value type text color",
"since": "2022.2"
},
{
"key": "Debugger.EvaluateExpression.background",
"description": "Background color of the evaluate expression field embedded into the variables view",
"since": "2022.2"
},
{
"key": "DefaultTabs.background",
"since": "2019.2",
"description": "Default tabs are applied to all tabs except TabbedPane and unless particular tab keys, e.g. EditorTabs, are set. This key is the background under all tabs."
},
{
"key": "DefaultTabs.borderColor",
"since": "2019.2",
"description": "Default tabs are applied to all tabs except TabbedPane and unless particular tab keys, e.g. EditorTabs, are set. This key is the border color for all tabs."
},
{
"key": "DefaultTabs.hoverColor",
"since": "2019.2",
"deprecated": true
},
{
"key": "DefaultTabs.hoverBackground",
"since": "2019.2",
"description": "Transparent background on hover over tabs, both regular and with file color."
},
{
"key": "DefaultTabs.inactiveMaskColor",
"since": "2019.2",
"deprecated": true
},
{
"key": "DefaultTabs.inactiveUnderlineColor",
"since": "2019.2",
"description": "Underline color when the tab is not in focus"
},
{
"key": "DefaultTabs.underlineColor",
"description": "The line under the selected tab",
"since": "2019.2"
},
{
"key": "DefaultTabs.underlineHeight",
"description": "The line under the selected tab",
"since": "2019.2"
},
{
"key": "DefaultTabs.underlinedTabBackground",
"since": "2019.2",
"description": "Background for the selected tab"
},
{
"key": "DefaultTabs.underlinedTabForeground",
"since": "2019.2",
"description": "Foreground for the selected tab"
},
{
"key": "Editor.background",
"description": "Empty editor area"
},
{
"key": "Editor.foreground"
},
{
"key": "Editor.shortcutForeground"
},
{
"key": "Editor.Notification.borderInsets",
"description": "Editor notification banner insets with a status icon",
"since": "2023.2"
},
{
"key": "Editor.Notification.WithoutStatus.borderInsets",
"description": "Editor notification banner insets without a status icon",
"since": "2024.1"
},
{
"key": "Editor.SearchField.borderInsets",
"description": "Additional insets around editor search/replace fields in Experimental UI"
},
{
"key": "Editor.SearchField.background",
"description": "Editor inplace search/replace fields background color"
},
{
"key": "Editor.ReplaceToolbar.borderInsets",
"description": "Insets around editor replace panel",
"since": "2023.3.1"
},
{
"key": "Editor.SearchReplaceModePanel.borderInsets",
"description": "Insets around the button that toggles search/replace mode in the editor",
"since": "2023.3.1"
},
{
"key": "Editor.SearchToolbar.borderInsets",
"description": "Insets around editor search panel",
"since": "2023.3.1"
},
{
"key": "Editor.Toolbar.borderColor",
"description": "Editor header component border"
},
{
"key": "Editor.Gutter.emptyAnnotationAreaWidth",
"description": "Editor gutter annotation area width when the annotations are hidden",
"since": "2024.1"
},
{
"key": "Editor.Gutter.gapAfterVcsMarkersWidth",
"description": "Editor gutter gap width after the VCS annotation markers",
"since": "2024.1"
},
{
"key": "Editor.Gutter.gapAfterLineNumbersWidth",
"description": "Editor gutter gap width after the line numbers",
"since": "2024.1"
},
{
"key": "Editor.Gutter.gapAfterIconsWidth",
"description": "Editor gutter gap width after the icons",
"since": "2024.1"
},
{
"key": "EditorTabs.background",
"description": "Background under all tabs in the editor. If value isn't specified the value of DefaultTabs.background will be used",
"since": "2019.2"
},
{
"key": "EditorTabs.borderColor",
"description": "The editor tabs border color. If value isn't specified the value of DefaultTabs.borderColor will be used",
"since": "2019.2"
},
{
"key": "EditorTabs.fontSizeOffset",
"description": "The editor tabs font size offset",
"since": "2024.1"
},
{
"key": "EditorTabs.hoverColor",
"deprecated": true
},
{
"key": "EditorTabs.hoverBackground",
"since": "2019.2",
"description": "Transparent overlay on editor tab hover. If value isn't specified the value of DefaultTabs.hoverBackground will be used"
},
{
"key": "EditorTabs.hoverInactiveBackground",
"since": "2022.1",
"description": "Transparent overlay on editor tab hover when editor is not focused. If value isn't specified the value of DefaultTabs.hoverBackground will be used"
},
{
"key": "EditorTabs.hoverSelectedBackground",
"since": "2022.1",
"description": "Transparent overlay on selected editor tab. If value isn't specified the #00000000 will be used"
},
{
"key": "EditorTabs.hoverSelectedInactiveBackground",
"since": "2022.1",
"description": "Transparent overlay on selected editor tab when editor is not focused. If value isn't specified the #00000000 will be used"
},
{
"key": "EditorTabs.inactiveColoredFileBackground",
"description": "Masks inactive tabs with file color. Does not affect tabs without file color.",
"since": "2019.2"
},
{
"key": "EditorTabs.inactiveUnderlineColor",
"since": "2019.2",
"description": "Selected tab underline color when the tab is not in focus. If value isn't specified the value of DefaultTabs.inactiveUnderlineColor will be used"
},
{
"key": "EditorTabs.selectedBackground",
"description": "Background for all tabs in 2019.1",
"deprecated": true
},
{
"key": "EditorTabs.underlinedTabForeground",
"since": "2019.2",
"description": "Foreground of the selected tab when a file status color is not used. Inactive tabs use Label.foreground."
},
{
"key": "EditorTabs.underlineColor",
"since": "2019.2",
"description": "The line under the selected tab. If value isn't specified the value of DefaultTabs.underlineColor will be used"
},
{
"key": "EditorTabs.underlineHeight",
"since": "2019.2",
"description": "The line under the selected tab. If value isn't specified the value of DefaultTabs.underlineHeight will be used"
},
{
"key": "EditorTabs.underlinedTabBackground",
"description": "Background for the selected tab. If value isn't specified the value of DefaultTabs.underlinedTabBackground will be used",
"since": "2019.2"
},
{
"key": "EditorTabs.tabContentActionsLeftInsets",
"description": "Editor tab label insets when the tab actions buttons are on the left",
"since": "2024.1"
},
{
"key": "EditorTabs.tabContentActionsRightInsets",
"description": "Editor tab label insets when the tab actions buttons are on the right",
"since": "2024.1"
},
{
"key": "EditorTabs.tabContentActionsNoneInsets",
"description": "Editor tab label insets when there are no action buttons",
"since": "2024.1"
},
{
"key": "EditorTabs.tabInsets",
"description": "Inner insets around each editor tab"
},
{
"key": "EditorTabs.verticalTabInsets",
"description": "Inner insets around each editor tab when tabs placed left or right",
"since": "2023.1"
},
{
"key": "EditorTabs.unselectedAlpha",
"description": "The alpha coefficient (0..1) that is used to paint file icon if the tab is not selected and not hovered",
"since": "2023.1"
},
{
"key": "EditorTabs.unselectedBlend",
"description": "The blending coefficient (0..1) that is used to edit the foreground of the tab label if the tab is not selected and not hovered",
"since": "2023.1"
},
{
"key": "EditorPane.splitBorder",
"description": "Separator color for editor split mode",
"since": "2022.2"
},
{
"key": "FileColor.Blue",
"description": "Settings | Appearance & Behavior | File colors"
},
{
"key": "FileColor.Green"
},
{
"key": "FileColor.Orange"
},
{
"key": "FileColor.Rose"
},
{
"key": "FileColor.Violet"
},
{
"key": "FileColor.Yellow"
},
{
"key": "FileColor.Gray"
},
{
"key": "FlameGraph.frameForeground",
"description": "Java profiler flame graph",
"deprecated": true
},
{
"key": "FlameGraph.JVMBackground",
"deprecated": true
},
{
"key": "FlameGraph.JVMFocusBackground",
"deprecated": true
},
{
"key": "FlameGraph.JVMFocusedFrameForeground",
"deprecated": true
},
{
"key": "FlameGraph.JVMFocusSearchNotMatchedBackground",
"deprecated": true
},
{
"key": "FlameGraph.JVMFrameForeground",
"deprecated": true
},
{
"key": "FlameGraph.JVMSearchNotMatchedBackground",
"deprecated": true
},
{
"key": "FlameGraph.nativeBackground",
"deprecated": true
},
{
"key": "FlameGraph.nativeFocusBackground",
"deprecated": true
},
{
"key": "FlameGraph.nativeFocusedFrameForeground",
"deprecated": true
},
{
"key": "FlameGraph.nativeFocusSearchNotMatchedBackground",
"deprecated": true
},
{
"key": "FlameGraph.nativeFrameForeground",
"deprecated": true
},
{
"key": "FlameGraph.nativeSearchNotMatchedBackground",
"deprecated": true
},
{
"key": "FlameGraph.parentBackground",
"deprecated": true
},
{
"key": "FlameGraph.parentFocusBackground",
"deprecated": true
},
{
"key": "FlameGraph.parentFocusedFrameForeground",
"deprecated": true
},
{
"key": "FlameGraph.parentFocusSearchNotMatchedBackground",
"deprecated": true
},
{
"key": "FlameGraph.parentFrameForeground",
"deprecated": true
},
{
"key": "FlameGraph.parentSearchNotMatchedBackground",
"deprecated": true
},
{
"key": "GotItTooltip.foreground",
"description": "GotIt tooltip foreground color if different from ToolTip.foreground"
},
{
"key": "GotItTooltip.background",
"description": "GotIt tooltip background color if different from ToolTip.background"
},
{
"key": "GotItTooltip.shortcutForeground",
"description": "GotIt tooltip shortcuts foreground color if different from ToolTip.shortcutForeground"
},
{
"key": "GotItTooltip.shortcutBackground",
"description": "GotIt tooltip shortcuts rounded background color if different from GotItTooltip.background"
},
{
"key": "GotItTooltip.borderColor",
"description": "GotIt tooltip border color if different from ToolTip.borderColor"
},
{
"key": "GotItTooltip.linkForeground",
"description": "GotIt tooltip link foreground color if different from Link.activeForeground"
},
{
"key": "GotItTooltip.codeForeground",
"description": "GotIt tooltip inline code element foreground color if different from GotItTooltip.foreground",
"since": "2023.1.1"
},
{
"key": "GotItTooltip.codeBackground",
"description": "GotIt tooltip inline code element background color if different from GotItTooltip.background",
"since": "2023.1.1"
},
{
"key": "GotItTooltip.codeBorderColor",
"description": "GotIt tooltip inline code element border color if different from GotItTooltip.shortcutBackground",
"since": "2023.1.1"
},
{
"key": "GotItTooltip.stepForeground",
"description": "GotIt tooltip step number foreground color if different from GotItTooltip.foreground",
"since": "2023.1"
},
{
"key": "GotItTooltip.imageBorderColor",
"description": "GotIt tooltip image rounded border color if different from GotItTooltip.background",
"since": "2023.2.1"
},
{
"key": "GotItTooltip.animationBackground",
"description": "GotIt tooltip animation background color if different from GotItTooltip.background",
"since": "2023.2.1"
},
{
"key": "GotItTooltip.Header.foreground",
"description": "GotIt tooltip header foreground color if different from GotItTooltip.foreground",
"since": "2022.3.1"
},
{
"key": "GotItTooltip.Button.foreground",
"description": "GotIt tooltip button foreground color if different from Button.foreground",
"since": "2022.3.1"
},
{
"key": "GotItTooltip.Button.startBackground",
"description": "GotIt tooltip button background gradient start color if different from Button.startBackground",
"since": "2022.3.1"
},
{
"key": "GotItTooltip.Button.endBackground",
"description": "GotIt tooltip button background gradient end color if different from Button.endBackground",
"since": "2022.3.1"
},
{
"key": "GotItTooltip.Button.startBorderColor",
"description": "GotIt tooltip button outline gradient start color if different from Button.startBorderColor",
"since": "2022.3.1"
},
{
"key": "GotItTooltip.Button.endBorderColor",
"description": "GotIt tooltip button outline gradient end color if different from Button.endBorderColor",
"since": "2022.3.1"
},
{
"key": "GotItTooltip.startBackground",
"description": "Use GotItTooltip.Button.startBackground",
"deprecated": true
},
{
"key": "GotItTooltip.endBackground",
"description": "Use GotItTooltip.Button.endBackground",
"deprecated": true
},
{
"key": "GotItTooltip.startBorderColor",
"description": "Use GotItTooltip.Button.startBorderColor",
"deprecated": true
},
{
"key": "GotItTooltip.endBorderColor",
"description": "Use GotItTooltip.Button.endBorderColor",
"deprecated": true
},
{
"key": "GotItTooltip.insets",
"description": "GotIt tooltip content insets",
"since": "2023.1"
},
{
"key": "GotItTooltip.textInset",
"description": "GotIt tooltip inset between header and description, and description and link",
"since": "2023.1"
},
{
"key": "GotItTooltip.buttonTopInset",
"description": "GotIt tooltip inset between description and button",
"since": "2023.1"
},
{
"key": "GotItTooltip.buttonBottomInset",
"description": "GotIt tooltip additional bottom inset if there is a button",
"since": "2023.1"
},
{
"key": "GotItTooltip.iconInset",
"description": "GotIt tooltip inset between step number/icon and header/description",
"since": "2023.1"
},
{
"key": "GotItTooltip.imageTopInset",
"description": "GotIt tooltip additional top inset if there is an image",
"since": "2023.1"
},
{
"key": "GotItTooltip.imageBottomInset",
"description": "GotIt tooltip inset between image and header/description",
"since": "2023.1"
},
{
"key": "GotItTooltip.arc",
"description": "GotIt tooltip radius of the rounded corners",
"since": "2023.1"
},
{
"key": "Group.disabledSeparatorColor"
},
{
"key": "Group.separatorColor",
"description": "Titled separator line color"
},
{
"key": "GutterTooltip.infoForeground",
"description": "Gray info text in a tooltip for overrides/implements icons"
},
{
"key": "GutterTooltip.lineSeparatorColor",
"description": "Separator line between lines of text"
},
{
"key": "HeaderColor.active",
"deprecated": true
},
{
"key": "HeaderColor.inactive",
"deprecated": true
},
{
"key": "HelpTooltip.background",
"description": "Use ToolTip.background instead",
"deprecated": true
},
{
"key": "HelpTooltip.borderColor",
"description": "Use ToolTip.borderColor instead",
"deprecated": false
},
{
"key": "HelpTooltip.foreground",
"description": "Use ToolTip.foreground instead",
"deprecated": true
},