-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy paththeme.schema.json
363 lines (352 loc) · 12.9 KB
/
theme.schema.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
{
"$schema": "https://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/SMJSGaming/GDIntercept/main/resources/themes/theme.schema.json",
"title": "GDIntercept Theme",
"type": "object",
"description": "The schema for the GDIntercept themes.",
"additionalProperties": false,
"properties": {
"$schema": {
"type": "string",
"description": "The inclusion of this schema."
},
"version": {
"type": "string",
"description": "The version of the schema.",
"enum": [ "1.0.0" ]
},
"name": {
"type": "string",
"description": "The name of the theme."
},
"theme": {
"type": "object",
"description": "The theme properties read by GDIntercept.",
"additionalProperties": false,
"properties": {
"code": {
"type": "object",
"description": "The code colors of the theme.",
"additionalProperties": false,
"properties": {
"padding-left": {
"type": "number",
"description": "The padding used on the left side of the code block.",
"default": 3,
"minimum": 0
},
"padding-right": {
"type": "number",
"description": "The padding used on the right side of the code block.",
"default": 3,
"minimum": 0
},
"padding-center": {
"type": "number",
"description": "The padding used in between the line number and code line.",
"default": 3,
"minimum": 0
},
"background": {
"$ref": "#/definitions/color",
"description": "The background color of the code block."
},
"foreground": {
"$ref": "#/definitions/color",
"description": "The foreground color of the code block. Used for line numbers and highlights."
},
"font": { "$ref": "#/definitions/font" },
"scrollbar": {
"type": "object",
"description": "The scrollbar colors of the theme.",
"additionalProperties": false,
"properties": {
"size": {
"type": "number",
"description": "The width or height (depending on if the scrollbar is vertical or horizontal) of the scrollbar.",
"default": 4,
"minimum": 0
},
"border": {
"$ref": "#/definitions/color",
"description": "The color of the scrollbar border."
},
"thumb": {
"$ref": "#/definitions/color",
"description": "The color of the thumb."
},
"active-thumb": {
"$ref": "#/definitions/color",
"description": "The color the thumb when held down.",
"custom_default": "#/definitions/scrollbar/thumb[a = min(a * 2, 255)]"
}
},
"required": [ "border", "thumb" ]
},
"syntax": {
"type": "object",
"description": "The syntax colors of the theme.",
"additionalProperties": false,
"properties": {
"text": {
"$ref": "#/definitions/color",
"description": "The color of plain text."
},
"key": {
"$ref": "#/definitions/color",
"description": "The color of keys."
},
"string": {
"$ref": "#/definitions/color",
"description": "The color of strings."
},
"number": {
"$ref": "#/definitions/color",
"description": "The color of numbers."
},
"constant": {
"$ref": "#/definitions/color",
"description": "The color of constants."
},
"error": {
"$ref": "#/definitions/color",
"description": "The color of errors."
},
"separator": {
"$ref": "#/definitions/color",
"description": "The color of separators (:).",
"custom_default": "#/definitions/syntax/text"
},
"terminator": {
"$ref": "#/definitions/color",
"description": "The color of terminators (,).",
"custom_default": "#/definitions/syntax/text"
},
"bracket": {
"$ref": "#/definitions/color",
"description": "The color of brackets.",
"custom_default": "#/definitions/syntax/text"
},
"key-quote": {
"$ref": "#/definitions/color",
"description": "The color of the quotes used in keys.",
"custom_default": "#/definitions/syntax/key"
},
"string-quote": {
"$ref": "#/definitions/color",
"description": "The color of the quotes used in strings.",
"custom_default": "#/definitions/syntax/string"
}
},
"required": [ "text", "key", "string", "number", "constant", "error" ]
}
},
"required": [ "background", "foreground", "font", "scrollbar", "syntax" ]
},
"menu": {
"type": "object",
"description": "The side bar menu colors of the theme.",
"additionalProperties": false,
"properties": {
"padding-left": {
"type": "number",
"description": "The padding used on the left side of the menu.",
"default": 3,
"minimum": 0
},
"padding-right": {
"type": "number",
"description": "The padding used on the right side of the menu.",
"default": 3,
"minimum": 0
},
"padding-center": {
"type": "number",
"description": "The padding used in between the icon and name of the menu items.",
"default": 3,
"minimum": 0
},
"background": {
"$ref": "#/definitions/color",
"description": "The background color of the menu."
},
"category-background": {
"$ref": "#/definitions/color",
"description": "The background color of the category menu items.",
"custom_default": "#/definitions/menu/background"
},
"foreground": {
"$ref": "#/definitions/color",
"description": "The foreground color of the menu. Used for hovering, clicking and viewing."
},
"text": {
"$ref": "#/definitions/color",
"description": "The color of the text in the menu."
},
"disabled-text": {
"$ref": "#/definitions/color",
"description": "The color of the text in disabled action items.",
"custom_default": "#/definitions/menu/text[a = 0x55]"
},
"category-text": {
"$ref": "#/definitions/color",
"description": "The color of the text in category items.",
"custom_default": "#/definitions/menu/text[a = 0xAA]"
},
"border": {
"$ref": "#/definitions/color",
"description": "The color of the border on the right side of the menu."
},
"category-border": {
"$ref": "#/definitions/color",
"description": "The color of the top and bottom border of category items.",
"custom_default": "#/definitions/menu/border"
},
"font": { "$ref": "#/definitions/font" },
"icons": {
"type": "object",
"description": "The icon colors of the theme.",
"additionalProperties": false,
"properties": {
"info": {
"$ref": "#/definitions/color",
"description": "The color of the info icon.",
"default": "#FF6961"
},
"body": {
"$ref": "#/definitions/color",
"description": "The color of the body icon.",
"default": "#FFEE8C"
},
"query": {
"$ref": "#/definitions/color",
"description": "The color of the query icon.",
"default": "#A2BFFE"
},
"header": {
"$ref": "#/definitions/color",
"description": "The color of the header icon.",
"default": "#B19CD9"
},
"response": {
"$ref": "#/definitions/color",
"description": "The color of the response icon.",
"default": "#B2FBA5"
},
"action-icon": {
"$ref": "#/definitions/color",
"description": "The color of the icons on the right side of an action.",
"custom_default": "#/definitions/menu/text"
},
"disabled-icon": {
"$ref": "#/definitions/color",
"description": "The color of icons which are disabled and can't be clicked.",
"custom_default": "#/definitions/menu/disabled-text"
},
"category-icon": {
"$ref": "#/definitions/color",
"description": "The color of the icons on the right side of a category.",
"custom_default": "#/definitions/menu/category-text"
}
}
}
},
"required": [ "background", "foreground", "text", "border", "font" ]
}
},
"required": [ "code", "menu" ]
}
},
"required": [ "$schema", "version", "name", "theme" ],
"definitions": {
"color-channel": {
"type": "integer",
"description": "A color channel value.",
"minimum": 0,
"maximum": 255
},
"color": {
"description": "A theme color.",
"oneOf": [
{
"type": "string",
"description": "A color in hex format. The following formats are supported: #R/G/B, #RR/GG/BB, #RGB, #RGBA, #RRGGBB and #RRGGBBAA.",
"pattern": "^#([0-9a-fA-F]{1,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$"
},
{
"type": "array",
"description": "A color channel array.",
"minItems": 3,
"maxItems": 4,
"additionalItems": false,
"items": [
{
"$ref": "#/definitions/color-channel",
"description": "The red channel of the color."
},
{
"$ref": "#/definitions/color-channel",
"description": "The green channel of the color."
},
{
"$ref": "#/definitions/color-channel",
"description": "The blue channel of the color."
},
{
"$ref": "#/definitions/color-channel",
"description": "The alpha channel of the color.",
"default": 255
}
]
},
{
"type": "object",
"description": "A color object.",
"additionalProperties": false,
"properties": {
"r": {
"$ref": "#/definitions/color-channel",
"description": "The red channel of the color."
},
"g": {
"$ref": "#/definitions/color-channel",
"description": "The green channel of the color."
},
"b": {
"$ref": "#/definitions/color-channel",
"description": "The blue channel of the color."
},
"a": {
"$ref": "#/definitions/color-channel",
"description": "The alpha channel of the color.",
"default": 255
}
},
"required": [ "r", "g", "b" ]
}
]
},
"font": {
"type": "object",
"description": "The font properties of the theme.",
"additionalProperties": false,
"properties": {
"family": {
"type": "string",
"description": "The font family of the theme including resource path."
},
"scale": {
"type": "number",
"description": "The scale of the font."
},
"line-height": {
"type": "number",
"description": "The line height used between text lines.",
"default": 2,
"minimum": 0
}
},
"required": [ "family", "scale" ]
}
}
}