From 2381ad08cd061b58a62bb1ec2709e23d308034ba Mon Sep 17 00:00:00 2001 From: Khushboo Mehta Date: Tue, 21 Sep 2021 17:29:32 +0200 Subject: [PATCH] fix(@desktop/chat): Online/offline labels are hard to read in darkmode fixes #3550 --- .../AppLayouts/Chat/CommunityComponents/CommunityUserList.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityUserList.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityUserList.qml index 8114c78966..35d9f0038b 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityUserList.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityUserList.qml @@ -14,6 +14,8 @@ import "../ChatColumn/MessageComponents" import "../ChatColumn/" import "../ContactsColumn" +import StatusQ.Core.Theme 0.1 + Item { id: root anchors.fill: parent @@ -65,7 +67,7 @@ Item { anchors.leftMargin: Style.current.padding verticalAlignment: Text.AlignVCenter font.pixelSize: Style.current.additionalTextSize - color: Style.current.darkGrey + color: Theme.palette.baseColor1 text: section === 'true' ? qsTr("Online") : qsTr("Offline") } }