-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
48 lines (44 loc) · 828 Bytes
/
config.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
43
44
45
46
47
48
var config = {};
config.settings = {
'admin': 'blork',
'ratings': true,
'timer': 180000
}
config.drinks = {
'tea': {
'name': 'Tea',
'color': '#edd8bb',
'option': 'tea <optional message>',
},
'coffee': {
'name': 'Coffee',
'color': '#6f4e37',
'option': 'coffee <optional message>',
},
'other': {
'name': 'Other',
'color': '#ebf4fa',
'option': 'other <message>',
}
};
config.optionSettings = {
'me': {
'color': '#fea3aa'
},
'you': {
'color': '#f8b88b'
},
'someone': {
'color': '#faf884'
},
'random': {
'color': '#baed91'
},
'brews': {
'color': '#b2cefe'
},
'teaderboard': {
'color': '#f2a2e8'
}
};
module.exports = config;