mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-09-17 10:16:57 +00:00
Fix updateContext. Change the colors used to make chat names readable. Fix /me actions in chat. Fix socket.ping()
This commit is contained in:
parent
ab8904a626
commit
127184f997
5 changed files with 20 additions and 11 deletions
|
@ -228,7 +228,8 @@ export default class ChatHook extends Module {
|
|||
c = this.colors;
|
||||
|
||||
// TODO: Get the background color from the theme system.
|
||||
c._base = is_dark ? '#0e0c13' : '#faf9fa';
|
||||
// Updated: Use the lightest/darkest colors from alternating rows for better readibility.
|
||||
c._base = is_dark ? '#191919' : '#e0e0e0'; //#0e0c13' : '#faf9fa';
|
||||
c.mode = mode;
|
||||
c.contrast = contrast;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue