From 7adee6556cd7962513c09f3d1cb1a693cdd58ccf Mon Sep 17 00:00:00 2001 From: SirStendec Date: Wed, 25 Nov 2020 20:19:15 -0500 Subject: [PATCH] 4.20.53 * Fixed: Background highlight colors for chat messages. --- package.json | 2 +- src/sites/twitch-twilight/modules/chat/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1e75dac3..395b4142 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "frankerfacez", "author": "Dan Salvato LLC", - "version": "4.20.52", + "version": "4.20.53", "description": "FrankerFaceZ is a Twitch enhancement suite.", "license": "Apache-2.0", "scripts": { diff --git a/src/sites/twitch-twilight/modules/chat/index.js b/src/sites/twitch-twilight/modules/chat/index.js index b35c11b8..3f81c46a 100644 --- a/src/sites/twitch-twilight/modules/chat/index.js +++ b/src/sites/twitch-twilight/modules/chat/index.js @@ -619,7 +619,7 @@ export default class ChatHook extends Module { if ( chat_text ) text_dark = chat_text.luminance() < 0.5; - chat_text = text_dark ? '#dad8de' : '#19171c'; + chat_text = text_dark ? '#19171c' : '#dad8de'; // TODO: Get the background color from the theme system. // Updated: Use the lightest/darkest colors from alternating rows for better readibility.