-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathasset.json
105 lines (103 loc) · 1.49 KB
/
asset.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
{
"id": "997973ec-155d-4e85-a2df-82039ef91ad5",
"name": "Gallery Info - Blue",
"tags": ["signpost", "text"],
"category": "decorations",
"parameters": [
{
"id": "text",
"label": "Text",
"type": "textarea",
"default": "Some text"
},
{
"id": "fontSize",
"label": "Font Size",
"type": "slider",
"min": 2,
"max": 10,
"step": 0.5,
"default": 5
},
{
"id": "font",
"label" :"Font",
"type": "options",
"options": [
{
"value": "SF",
"label": "SanFrancisco"
},
{
"value": "SF_Heavy",
"label": "SanFrancisco Heavy"
}
],
"default": "SF"
},
{
"id": "color",
"label" :"Color",
"type": "options",
"options": [
{
"value": "#000000",
"label": "Black"
},
{
"value": "#FFFFFF",
"label": "White"
},
{
"value": "#808080",
"label": "Gray"
},
{
"value": "#FF0000",
"label": "Red"
},
{
"value": "#00FF00",
"label": "Lime"
},
{
"value": "#0000FF",
"label": "Blue"
},
{
"value": "#800000",
"label": "Maroon"
},
{
"value": "#808000",
"label": "Olive"
},
{
"value": "#008000",
"label": "Green"
},
{
"value": "#00FFFF",
"label": "Aqua"
},
{
"value": "#008080",
"label": "Teal"
},
{
"value": "#000080",
"label": "Navy"
},
{
"value": "#FF00FF",
"label": "Fuchsia"
},
{
"value": "#800080",
"label": "Purple"
}
],
"default": "#000000"
}
]
}