diff --git a/multichat-overlay/script.js b/multichat-overlay/script.js index 5b971b0..6779df8 100644 --- a/multichat-overlay/script.js +++ b/multichat-overlay/script.js @@ -212,6 +212,21 @@ client.on('Twitch.ChatCleared', (response) => { TwitchChatCleared(response.data); }) +client.on('Twitch.SharedChatMessageDeleted', (response) => { + console.debug(response.data); + TwitchChatMessageDeleted(response.data); +}) + +client.on('Twitch.SharedChatUserBanned', (response) => { + console.debug(response.data); + TwitchUserBanned(response.data); +}) + +client.on('Twitch.SharedChatUserTimedout', (response) => { + console.debug(response.data); + TwitchUserBanned(response.data); +}) + client.on('YouTube.Message', (response) => { console.debug(response.data); YouTubeMessage(response.data) diff --git a/multichat-overlay/style.css b/multichat-overlay/style.css index 143748c..cd048e3 100644 --- a/multichat-overlay/style.css +++ b/multichat-overlay/style.css @@ -268,67 +268,67 @@ li { /*****************/ .announcementBlue { - background: linear-gradient(#03d3d7BF, #8d49feBF) !important; + background: linear-gradient(#03d3d7, #8d49fe) !important; } .announcementGreen { - background: linear-gradient(#01da86BF, #55bee4BF) !important; + background: linear-gradient(#01da86, #55bee4) !important; } .announcementOrange { - background: linear-gradient(#feb419BF, #e1df00BF) !important; + background: linear-gradient(#feb419, #e1df00) !important; } .announcementPurple { - background: linear-gradient(#9548ffBF, #fc74e6BF) !important; + background: linear-gradient(#9548ff, #fc74e6) !important; } .twitch { - background: linear-gradient(#6d5ca1bf, #9146ffBF) !important; + background: linear-gradient(#6d5ca1, #9146ff) !important; } .youtube { - background: linear-gradient(#FF6C60BF, #FF0707BF) !important; + background: linear-gradient(#FF6C60, #FF0707) !important; } .kick { - background: linear-gradient(#53fc18BF, #005600BF) !important; + background: linear-gradient(#53fc18, #005600) !important; } .streamlabs { - background: linear-gradient(#73dabbbf, #397765bf) !important; + background: linear-gradient(#73dabb, #397765) !important; } .streamelements { - background: linear-gradient(#263b8abf, #0a112abf) !important; + background: linear-gradient(#263b8a, #0a112a) !important; } .patreon { - background: linear-gradient(#c76633bf, #fd5e0abf) !important; + background: linear-gradient(#c76633, #fd5e0a) !important; } .kofi { - background: linear-gradient(#54c7eebf, #08c2ffbf) !important; + background: linear-gradient(#54c7ee, #08c2ff) !important; } .tipeeeStream { - background: linear-gradient(#120e23bf, #5d192abf) !important; + background: linear-gradient(#120e23, #5d192a) !important; } .fourthwall { - background: linear-gradient(#466edbbf, #1c56f5bf) !important; + background: linear-gradient(#466edb, #1c56f5) !important; } .tiktok { - background: linear-gradient(#262626BF, #000000BF) !important; + background: linear-gradient(#262626, #000000) !important; } .fourthwall { - background: linear-gradient(#466edbbf, #1c56f5bf) !important; + background: linear-gradient(#466edb, #1c56f5) !important; } .thumbnail { - background: linear-gradient(#494949bf, #202020bf) !important; + background: linear-gradient(#494949, #202020) !important; }