1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-17 10:16:57 +00:00
* Fixed: Background highlight colors for chat messages.
This commit is contained in:
SirStendec 2020-11-25 20:19:15 -05:00
parent b098e59f4c
commit 7adee6556c
2 changed files with 2 additions and 2 deletions

View file

@ -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.