-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathschema.json
136 lines (136 loc) · 5.54 KB
/
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
{
"additionalProperties": false,
"definitions": {
"color": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6,8}$"
}
},
"properties": {
"BasicColors": {
"type": "object",
"properties": {
"Window": {
"$ref": "#/definitions/color",
"description": "Window background color"
},
"WindowBorder": {
"$ref": "#/definitions/color",
"description": "Window border color. Only used on Linux."
},
"TitleBar": {
"$ref": "#/definitions/color",
"description": "Title bar background color"
},
"ToolBar": {
"$ref": "#/definitions/color",
"description": "Tool bar background color"
},
"Popup": {
"$ref": "#/definitions/color",
"description": "Popup panel background color"
},
"Contents": {
"$ref": "#/definitions/color",
"description": "Background color used in inputs, data grids, file content viewer, change lists, text diff viewer, etc."
},
"Badge": {
"$ref": "#/definitions/color",
"description": "Badge background color"
},
"BadgeFG": {
"$ref": "#/definitions/color",
"description": "Badge foreground color"
},
"Conflict": {
"$ref": "#/definitions/color",
"description": "Conflict panel background color"
},
"ConflictForeground": {
"$ref": "#/definitions/color",
"description": "Conflict panel foreground color"
},
"DecoratorTag": {
"$ref": "#/definitions/color",
"description": "Background color for commit tag ref name"
},
"Border0": {
"$ref": "#/definitions/color",
"description": "Border color used in some controls, like Window, Tab, Toolbar, etc."
},
"Border1": {
"$ref": "#/definitions/color",
"description": "Border color used in inputs, like TextBox, ComboBox, etc."
},
"Border2": {
"$ref": "#/definitions/color",
"description": "Border color used in visual lines, like seperators, Rectange, etc."
},
"FlatButton.Background": {
"$ref": "#/definitions/color",
"description": "Flat button background color, like `Cancel`, `Commit & Push` button"
},
"FlatButton.BackgroundHovered": {
"$ref": "#/definitions/color",
"description": "Flat button background color when hovered, like `Cancel` button"
},
"FG1": {
"$ref": "#/definitions/color",
"description": "Primary foreground color for all text elements"
},
"FG2": {
"$ref": "#/definitions/color",
"description": "Secondary foreground color for all text elements"
},
"Diff.EmptyBG": {
"$ref": "#/definitions/color",
"description": "Background color used in empty lines in diff viewer"
},
"Diff.AddedBG": {
"$ref": "#/definitions/color",
"description": "Background color used in added lines in diff viewer"
},
"Diff.DeletedBG": {
"$ref": "#/definitions/color",
"description": "Background color used in deleted lines in diff viewer"
},
"Diff.AddedHighlight": {
"$ref": "#/definitions/color",
"description": "Background color used for changed words in added lines in diff viewer"
},
"Diff.DeletedHighlight": {
"$ref": "#/definitions/color",
"description": "Background color used for changed words in deleted lines in diff viewer"
},
"SystemAccentColor": {
"$ref": "#/definitions/color",
"description": "Accent color for selected items"
},
"Link": {
"$ref": "#/definitions/color",
"description": "Color for issue links"
}
}
},
"GraphPenThickness": {
"type": "number",
"minimum": 1,
"maximum": 4,
"description": "Thickness of pens to draw commit graph"
},
"OpacityForNotMergedCommits": {
"type": "number",
"minimum": 0.1,
"maximum": 1,
"description": "Opacity for commits that not belongs (haven't been merged) to current branch in histories view"
},
"GraphColors": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/color"
},
"description": "Array of colors used to draw the commit graph"
}
}
}