-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings-schema.json
executable file
·55 lines (55 loc) · 1.15 KB
/
settings-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
{
"note-entry": {
"type": "textview",
"default": "Your Note Here",
"description": "Note:",
"tooltip": "Write something"
},
"font-options-separator": {
"type": "separator"
},
"font-options-header": {
"type": "header",
"description": "Font options:"
},
"font-size": {
"type": "spinbutton",
"default": 24,
"min": 8,
"max": 200,
"units": "px",
"description": "Font size:",
"step": 1
},
"text-color": {
"type": "colorchooser",
"default": "rgba(0,0,0,255)",
"description": "Font color:",
"tooltip": "Click to select a new text color"
},
"bg-color": {
"type": "colorchooser",
"default": "rgba(255,255,255,0)",
"description": "Background color:",
"tooltip": "Click to select a new text color"
},
"pending-size": {
"type": "spinbutton",
"default": 8,
"min": 0,
"max": 200,
"units": "px",
"description": "Pending size:",
"step": 1
},
"text-align": {
"type": "radiogroup",
"default": "left",
"description": "Text alignment:",
"options": {
"Left": "left",
"Center": "center",
"Right": "right"
}
}
}