-
-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathmanifest.json
46 lines (41 loc) · 1.29 KB
/
manifest.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
{
"id": "a1962491",
"name": "Chromatic Gradients",
"version": "1.0.2",
"description": "This XD plugin lets you create an approximation of a gradient in other color spaces, like LAB. It is using the chroma-js JavaScript color manipulation library to add more color stops to your gradients.",
"icons": [
{ "width": 500, "height": 500, "path": "icon.png" }
],
"host": {
"app": "XD",
"minVersion": "13.0.0"
},
"uiEntryPoints": [
{
"type": "menu",
"label": "Chromatic Gradients",
"menuItems": [
{
"type": "menu",
"label": "LAB Gradient",
"commandId": "labGradient"
},
{
"type": "menu",
"label": "LRGB Gradient",
"commandId": "lrgbGradient"
},
{
"type": "menu",
"label": "LCH Gradient",
"commandId": "lchGradient"
},
{
"type": "menu",
"label": "Revert to RGB Gradient",
"commandId": "undoChromaticGradient"
}
]
}
]
}