Fix some dark mode colors. (#3596)

* Pick a link color that looks good in both light and dark mode

* Fix up chat log colors
This commit is contained in:
Rob Blanckaert 2019-03-03 02:24:10 -08:00 committed by Zach H
parent 63839eb464
commit a7f19f7848
4 changed files with 39 additions and 19 deletions

View file

@ -59,6 +59,10 @@ private:
void checkMention(QTextCursor &cursor, QString &message, QString &sender, UserLevelFlags userLevel);
void checkWord(QTextCursor &cursor, QString &message);
QString extractNextWord(QString &message, QString &rest);
QColor otherUserColor = QColor(0, 65, 255); // dark blue
QColor serverMessageColor = QColor(0x85, 0x15, 0x15);
private slots:
void openLink(const QUrl &link);
void actMessageClicked();