Skip to content

Commit bd80e2f

Browse files
authored
Merge pull request #10 from nuttylmao/beta
Beta
2 parents d32ac22 + befefc0 commit bd80e2f

File tree

2 files changed

+31
-16
lines changed

2 files changed

+31
-16
lines changed

multichat-overlay/script.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,21 @@ client.on('Twitch.ChatCleared', (response) => {
212212
TwitchChatCleared(response.data);
213213
})
214214

215+
client.on('Twitch.SharedChatMessageDeleted', (response) => {
216+
console.debug(response.data);
217+
TwitchChatMessageDeleted(response.data);
218+
})
219+
220+
client.on('Twitch.SharedChatUserBanned', (response) => {
221+
console.debug(response.data);
222+
TwitchUserBanned(response.data);
223+
})
224+
225+
client.on('Twitch.SharedChatUserTimedout', (response) => {
226+
console.debug(response.data);
227+
TwitchUserBanned(response.data);
228+
})
229+
215230
client.on('YouTube.Message', (response) => {
216231
console.debug(response.data);
217232
YouTubeMessage(response.data)

multichat-overlay/style.css

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -268,67 +268,67 @@ li {
268268
/*****************/
269269

270270
.announcementBlue {
271-
background: linear-gradient(#03d3d7BF, #8d49feBF) !important;
271+
background: linear-gradient(#03d3d7, #8d49fe) !important;
272272
}
273273

274274
.announcementGreen {
275-
background: linear-gradient(#01da86BF, #55bee4BF) !important;
275+
background: linear-gradient(#01da86, #55bee4) !important;
276276
}
277277

278278
.announcementOrange {
279-
background: linear-gradient(#feb419BF, #e1df00BF) !important;
279+
background: linear-gradient(#feb419, #e1df00) !important;
280280
}
281281

282282
.announcementPurple {
283-
background: linear-gradient(#9548ffBF, #fc74e6BF) !important;
283+
background: linear-gradient(#9548ff, #fc74e6) !important;
284284
}
285285

286286
.twitch {
287-
background: linear-gradient(#6d5ca1bf, #9146ffBF) !important;
287+
background: linear-gradient(#6d5ca1, #9146ff) !important;
288288
}
289289

290290
.youtube {
291-
background: linear-gradient(#FF6C60BF, #FF0707BF) !important;
291+
background: linear-gradient(#FF6C60, #FF0707) !important;
292292
}
293293

294294
.kick {
295-
background: linear-gradient(#53fc18BF, #005600BF) !important;
295+
background: linear-gradient(#53fc18, #005600) !important;
296296
}
297297

298298
.streamlabs {
299-
background: linear-gradient(#73dabbbf, #397765bf) !important;
299+
background: linear-gradient(#73dabb, #397765) !important;
300300
}
301301

302302
.streamelements {
303-
background: linear-gradient(#263b8abf, #0a112abf) !important;
303+
background: linear-gradient(#263b8a, #0a112a) !important;
304304
}
305305

306306
.patreon {
307-
background: linear-gradient(#c76633bf, #fd5e0abf) !important;
307+
background: linear-gradient(#c76633, #fd5e0a) !important;
308308
}
309309

310310
.kofi {
311-
background: linear-gradient(#54c7eebf, #08c2ffbf) !important;
311+
background: linear-gradient(#54c7ee, #08c2ff) !important;
312312
}
313313

314314
.tipeeeStream {
315-
background: linear-gradient(#120e23bf, #5d192abf) !important;
315+
background: linear-gradient(#120e23, #5d192a) !important;
316316
}
317317

318318
.fourthwall {
319-
background: linear-gradient(#466edbbf, #1c56f5bf) !important;
319+
background: linear-gradient(#466edb, #1c56f5) !important;
320320
}
321321

322322
.tiktok {
323-
background: linear-gradient(#262626BF, #000000BF) !important;
323+
background: linear-gradient(#262626, #000000) !important;
324324
}
325325

326326
.fourthwall {
327-
background: linear-gradient(#466edbbf, #1c56f5bf) !important;
327+
background: linear-gradient(#466edb, #1c56f5) !important;
328328
}
329329

330330
.thumbnail {
331-
background: linear-gradient(#494949bf, #202020bf) !important;
331+
background: linear-gradient(#494949, #202020) !important;
332332
}
333333

334334

0 commit comments

Comments
 (0)