forked from CodeByZach/pace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.json
30 lines (30 loc) · 819 Bytes
/
install.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
{
"resources": {
"head": [
{
"type": "script",
"src": "./pace.js"
},
{
"type": "style",
"src": "./themes/{{ options.color }}/pace-theme-{{ options.theme }}.css"
}
]
},
"options": {
"properties": {
"color": {
"title": "Color",
"type": "string",
"enum": ["black", "white", "silver", "red", "orange", "yellow", "green", "blue", "pink", "purple"],
"default": "blue"
},
"theme": {
"title": "Theme",
"type": "string",
"enum": ["barber-shop", "big-counter", "bounce", "center-atom", "center-circle", "center-radar", "center-simple", "corner-indicator", "fill-left", "flash", "flat-top", "loading-bar", "mac-osx", "minimal"],
"default": "barber-shop"
}
}
}
}