-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
75 lines (75 loc) · 2.27 KB
/
config.js
File metadata and controls
75 lines (75 loc) · 2.27 KB
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
const config = {
"styles": {
"sw": {
"title": "Switch",
"cover": "ic_sw_red_on.png",
"sound": "switch_tone.mp3",
"colors": {
"red": {
"title": "Red",
"on": "ic_sw_red_on.png",
"off": "ic_sw_red_off.png"
},
"grn": {
"title": "Green",
"on": "ic_sw_grn_on.png",
"off": "ic_sw_grn_off.png"
},
"blu": {
"title": "Blue",
"on": "ic_sw_blu_on.png",
"off": "ic_sw_blu_off.png"
},
"grn_red": {
"title": "Green / Red",
"on": "ic_sw_grn_on.png",
"off": "ic_sw_red_off.png"
}
}
},
"gl": {
"title": "Glowing",
"cover": "ic_gl_all_off.png",
"sound": "glow_tone.mp3",
"colors": {
"red": {
"title": "Red",
"on": "ic_gl_red_on.png",
"off": "ic_gl_all_off.png"
},
"gre": {
"title": "Green",
"on": "ic_gl_grn_on.png",
"off": "ic_gl_all_off.png"
},
"blu": {
"title": "Blue",
"on": "ic_gl_blu_on.png",
"off": "ic_gl_all_off.png"
}
}
},
"mt": {
"title": "Metallic",
"cover": "ic_mt_all_off.png",
"sound": "metal_tone.mp3",
"colors": {
"red": {
"title": "Red",
"on": "ic_mt_red_on.png",
"off": "ic_mt_all_off.png"
},
"grn": {
"title": "Green",
"on": "ic_mt_grn_on.png",
"off": "ic_mt_all_off.png"
},
"blu": {
"title": "Blue",
"on": "ic_mt_blu_on.png",
"off": "ic_mt_all_off.png"
}
}
}
}
};