-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings_calc.json
147 lines (147 loc) · 2.63 KB
/
settings_calc.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
[
{
"type" : "bool",
"title" : "Custom Colors",
"desc" : "Toggle to switch between custom and default colors",
"section" : "Calculator Colors",
"key" : "CC",
"values" : ["Off", "On"],
"false" : "auto"
},
{
"type" : "title",
"title" : "Button Colors"
},
{
"type" : "options",
"title" : "Number Button",
"desc" : "Color of Number Buttons",
"section" : "Calculator Colors",
"key" : "NB",
"options": ["red",
"green",
"blue",
"black",
"white",
"pink",
"yellow",
"cyan",
"default"]
},
{
"type" : "options",
"title" : "Number Button Text",
"desc" : "Color of Number Button's Text",
"section" : "Calculator Colors",
"key" : "NBT",
"options": ["red",
"green",
"blue",
"black",
"white",
"pink",
"yellow",
"cyan",
"default"]
},
{
"type" : "options",
"title" : "Operation Button",
"desc" : "Color of Operation Buttons",
"section" : "Calculator Colors",
"key" : "OB",
"options": ["red",
"green",
"blue",
"black",
"white",
"pink",
"yellow",
"cyan",
"default"]
},
{
"type" : "options",
"title" : "Operation Button Text",
"desc" : "Color of Operation Button's Text",
"section" : "Calculator Colors",
"key" : "OBT",
"options": ["red",
"green",
"blue",
"black",
"white",
"pink",
"yellow",
"cyan",
"default"]
},
{
"type" : "options",
"title" : "Special Button",
"desc" : "Color of Special Buttons",
"section" : "Calculator Colors",
"key" : "SB",
"options": ["red",
"green",
"blue",
"black",
"white",
"pink",
"yellow",
"cyan",
"default"]
},
{
"type" : "options",
"title" : "Special Button Text",
"desc" : "Color of Special Button's Text",
"section" : "Calculator Colors",
"key" : "SBT",
"options": ["red",
"green",
"blue",
"black",
"white",
"pink",
"yellow",
"cyan",
"default"]
},
{
"type" : "title",
"title" : "Output Box Colors"
},
{
"type" : "options",
"title" : "Output Box Background",
"desc" : "Background Color of the Output Box",
"section" : "Calculator Colors",
"key" : "TIB",
"options": ["red",
"green",
"blue",
"black",
"white",
"pink",
"yellow",
"cyan",
"default"]
},
{
"type" : "options",
"title" : "Output Box Text",
"desc" : "Color of the text of the Output Box",
"section" : "Calculator Colors",
"key" : "TIF",
"options": ["red",
"green",
"blue",
"black",
"white",
"pink",
"yellow",
"cyan",
"default"]
}
]