added reward colors

This commit is contained in:
Janis
2022-10-31 17:38:39 +01:00
parent 271a7bc936
commit afacb9b93b
4 changed files with 137 additions and 2 deletions

View File

@@ -1,4 +1,32 @@
const CONFIG = {
apiKey: "",
twitchOAuth: "",
twitch: {
username: "",
oAuth: "",
clientId: "",
rewardIds: {
turnRed: "",
turnGreen: "",
turnPurple: "",
turnBlue: "",
},
},
themes: {
red: {
0: "rgb(79, 6, 6)",
1: "rgb(247, 52, 52)",
},
green: {
0: "rgb(11, 69, 22)",
1: "rgb(88, 252, 170)",
},
purple: {
0: "rgb(62, 7, 66)",
1: "rgb(188, 79, 240)",
},
blue: {
0: "rgb(17, 11, 125)",
1: "rgb(61, 223, 255)",
},
},
};