forked from aroscoe/Hex-to-RGBA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.sublime-menu
29 lines (29 loc) · 909 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
[
{
"id": "edit",
"children": [
{
"id" : "color_conversion_tools",
"caption" : "Color Conversion Tools",
"children" : [
{
"command": "hex_to_rgba",
"caption": "Convert Hex to RGBA"
},
{
"command" : "rgba_to_hex",
"caption" : "Convert RGB(A) to Hex"
},
{
"command" : "rgba_byte_to_float",
"caption" : "Convert Color: ub (0-255) to Float"
},
{
"command" : "rgba_float_to_byte",
"caption" : "Convert Color: Float to ub (0-255)"
}
]
}
]
}
]