1
+ {
2
+ "name": "Dark Blue",
3
+ "style": "Fusion",
4
+
5
+ "//": " Colors are specified as [Red, Green, Blue] values. Colors can be aliased in the 'colors' ",
6
+ "//": " section. Colors can also be averaged and mixed together using an RPN like notation: ",
7
+ "//": " '+' indicates 'average' - average the next two colors.",
8
+ "//": " '~' indicates 'mix' - mix the next two colors with the weight 0->255",
9
+ "//": " e.g.",
10
+ "//": " ['+', 'red', 'blue'] - average red and blue",
11
+ "//": " ['~', 'red', 'blue', 20] - mix a small amount of blue with red",
12
+ "//": " ['~', 'red', 'blue', 200] - mix a large amount of blue with red",
13
+ "//": " ['+', '~', 'red', 'blue', 20, 'green'] - mix red and blue with weight 20 then average with green",
14
+ "//": " The 'palette' section is to specify colors for the QPalette::ColorRole",
15
+
16
+ "colors": {
17
+ "background": [0, 0, 42],
18
+ "backgroundDark": [0, 0, 30],
19
+ "backgroundWindow": [0, 0, 80],
20
+ "backgroundHighlight": [0, 0, 128],
21
+ "content": [224, 224, 224],
22
+ "disabled": [144, 144, 144],
23
+ "selection": [96, 96, 96],
24
+ "selectionLight": [128, 128, 128],
25
+ "green": [0, 255, 0],
26
+ "red": [222, 143, 151],
27
+ "blue": [128, 198, 233],
28
+ "cyan": [142, 230, 237],
29
+ "lightCyan": [176, 221, 228],
30
+ "orange": [237, 189, 129],
31
+ "yellow": [237, 223, 179],
32
+ "magenta": [218, 196, 209]
33
+ },
34
+
35
+ "palette": {
36
+ "Window": "backgroundWindow",
37
+ "WindowText": "content",
38
+ "Base": "backgroundDark",
39
+ "AlternateBase": "background",
40
+ "ToolTipBase": "backgroundHighlight",
41
+ "ToolTipText": "content",
42
+ "Text": "content",
43
+ "Button": "backgroundHighlight",
44
+ "ButtonText": "content",
45
+ "BrightText": "yellow",
46
+ "Link": "blue",
47
+ "Highlight": "blue",
48
+ "HighlightedText": "backgroundDark",
49
+ "Light": ["+", "backgroundDark", "content"]
50
+ },
51
+
52
+ "theme-colors": {
53
+ "addressColor": "green",
54
+ "modifiedColor": "red",
55
+ "insertedColor": "blue",
56
+ "notPresentColor": "disabled",
57
+ "selectionColor": "selection",
58
+ "outlineColor": "content",
59
+ "backgroundHighlightDarkColor": "backgroundDark",
60
+ "backgroundHighlightLightColor": "backgroundWindow",
61
+ "boldBackgroundHighlightDarkColor": "backgroundDark",
62
+ "boldBackgroundHighlightLightColor": "selection",
63
+ "alphanumericHighlightColor": "blue",
64
+ "printableHighlightColor": "lightCyan",
65
+ "graphBackgroundDarkColor": "background",
66
+ "graphBackgroundLightColor": "background",
67
+ "graphNodeDarkColor": "backgroundHighlight",
68
+ "graphNodeLightColor": "backgroundHighlight",
69
+ "graphNodeOutlineColor": "disabled",
70
+ "trueBranchColor": "green",
71
+ "falseBranchColor": "red",
72
+ "unconditionalBranchColor": "blue",
73
+ "altTrueBranchColor": "blue",
74
+ "altFalseBranchColor": "orange",
75
+ "altUnconditionalBranchColor": "content",
76
+ "registerColor": "yellow",
77
+ "numberColor": "green",
78
+ "codeSymbolColor": "blue",
79
+ "dataSymbolColor": "cyan",
80
+ "stackVariableColor": ["+", "green", "content"],
81
+ "importColor": "orange",
82
+ "instructionHighlightColor": "selectionLight",
83
+ "tokenHighlightColor": "red",
84
+ "annotationColor": "magenta",
85
+ "opcodeColor": "disabled",
86
+ "linearDisassemblyFunctionHeaderColor": "backgroundHighlight",
87
+ "linearDisassemblyBlockColor": "background",
88
+ "linearDisassemblyNoteColor": ["~", "+", "backgroundDark", "background", "green", 48],
89
+ "linearDisassemblySeparatorColor": "disabled",
90
+ "stringColor": "magenta",
91
+ "typeNameColor": "orange",
92
+ "fieldNameColor": "lightCyan",
93
+ "keywordColor": "yellow",
94
+ "uncertainColor": "disabled",
95
+ "scriptConsoleOutputColor": "content",
96
+ "scriptConsoleErrorColor": "red",
97
+ "scriptConsoleEchoColor": "disabled",
98
+ "blueStandardHighlightColor": "blue",
99
+ "greenStandardHighlightColor": "green",
100
+ "cyanStandardHighlightColor": "cyan",
101
+ "redStandardHighlightColor": "red",
102
+ "magentaStandardHighlightColor": "magenta",
103
+ "yellowStandardHighlightColor": "yellow",
104
+ "orangeStandardHighlightColor": "orange",
105
+ "whiteStandardHighlightColor": "content",
106
+ "blackStandardHighlightColor": [0,0,0]
107
+ }
108
+ }
0 commit comments