-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
42 lines (39 loc) · 2.09 KB
/
index.js
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
module.exports = {
// 'pure-white-starrynight': Buffer.from([0xb7, 0x13, 0x65, 0xa3]),
// 'NOT-pure-white-steady': Buffer.from([0xb7, 0x13, 0x58, 0xa3]),
'gold-starrynight': Buffer.from([0xb7, 0x13, 0x59, 0xa3]),
// Single color effects
'pure-white-steady': Buffer.from([0xb7, 0x13, 0x68, 0x1d]),
'pure-white-starrynight': Buffer.from([0xb7, 0x13, 0x65, 0x89]),
'pure-white-sparkle': Buffer.from([0xb7, 0x13, 0x6b, 0xf9]),
'pure-white-glimmer': Buffer.from([0xb7, 0x13, 0x6a, 0x66]),
'warm-white-steady': Buffer.from([0xb7, 0x13, 0x6c, 0xbc]),
'polar-white-steady': Buffer.from([0xb7, 0x12, 0x60, 0x8a]),
'soft-white-steady': Buffer.from([0xb7, 0x12, 0x64, 0x71]),
'soft-white-steady': Buffer.from([0xb7, 0x12, 0x64, 0x12]),
'antique-white-steady': Buffer.from([0xb7, 0x12, 0x68, 0xd7]),
'incandescent-white-steady': Buffer.from([0xb7, 0x12, 0x6c, 0x84]),
'gold-steady': Buffer.from([0xb7, 0x1d, 0x60, 0xf9]),
'red-steady': Buffer.from([0xb7, 0x1d, 0x64, 0x6f]),
'orange-steady': Buffer.from([0xb7, 0x1d, 0x68, 0xff]),
'golden-yellow-steady': Buffer.from([0xb7, 0x1d, 0x6c, 0xb4]),
'acid-yellow-steady': Buffer.from([0xb7, 0x1c, 0x60, 0xf5]),
'chartreuse-steady': Buffer.from([0xb7, 0x1c, 0x64, 0x59]),
'green-steady': Buffer.from([0xb7, 0x1c, 0x68, 0xaf]),
'mint-steady': Buffer.from([0xb7, 0x1c, 0x6c, 0x7c]),
'turquoise-steady': Buffer.from([0xb7, 0x1f, 0x60, 0x2f]),
'blue-steady': Buffer.from([0xb7, 0x1f, 0x64, 0x36]),
'royal-blue-steady': Buffer.from([0xb7, 0x1f, 0x68, 0x02]),
'lavender-steady': Buffer.from([0xb7, 0x1f, 0x6c, 0x05]),
'pink-steady': Buffer.from([0xb7, 0x1e, 0x60, 0xf2]),
'fushia-steady': Buffer.from([0xb7, 0x1e, 0x64, 0xb1]),
'purple-steady': Buffer.from([0xb7, 0x1e, 0x68, 0x34]),
// Lightshows
'chistmas-lightshow': Buffer.from([0xb7, 0x13, 0x63, 0xa1]),
// 'rainbow-wave': Buffer.from([]),
// Themes
'valentine-steady': Buffer.from([0xb7, 0x1e, 0x6c, 0x60]),
'multi-starrynight': Buffer.from([0xb7, 0x13, 0x61, 0xa3]),
'multi-steady': Buffer.from([0xb7, 0x13, 0x64, 0xa3]),
'multi-glimmer': Buffer.from([0xb7, 0x13, 0x57, 0xa3])
}