-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMain.sublime-menu
executable file
·48 lines (48 loc) · 984 Bytes
/
Main.sublime-menu
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
[
{
"id": "edit",
"children":
[
{
"caption": "-",
"id": "rgbtohsl"
},
{
"caption": "RGB to HSL",
"id": "rgbtohslparent",
"children":
[
{
"caption": "Convert Selected RGB to HSL",
"command": "rgb_to_hsl"
},
{
"caption": "Convert Selected RGB to HSLA",
"command": "rgb_to_hsl",
"args":
{
"force_alpha" : true
}
},
{
"caption": "Convert All RGB to HSL",
"command": "rgb_to_hsl",
"args":
{
"convert_all" : true
}
},
{
"caption": "Convert All RGB to HSLA",
"command": "rgb_to_hsl",
"args":
{
"convert_all" : true,
"force_alpha" : true
}
}
]
}
]
}
]