Fix text color on room switcher
fixes #245
3 files changed, 18 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index f84b9300..034728f3 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -18,6 +18,10 @@ TimelineView > * {
background-color: #202228;
}
+QuickSwitcher {
+ background-color: #202228;
+}
+
RoomList,
RoomList > * {
background-color: #2d3139;
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index e158d76d..e18704b5 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -18,6 +18,10 @@ TimelineView > * {
background-color: white;
}
+QuickSwitcher {
+ background-color: white;
+}
+
RoomList,
RoomList > * {
background-color: white;
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index 4a4faeed..60b8865a 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -21,6 +21,10 @@ TimelineItem > * {
background-color: palette(window);
}
+QuickSwitcher {
+ background-color: palette(window);
+}
+
FlatButton {
qproperty-foregroundColor: palette(text);
}
@@ -67,6 +71,12 @@ RoomInfoListItem {
qproperty-timestampColor: palette(text);
qproperty-highlightedTimestampColor: palette(light);
+
+ qproperty-avatarBgColor: palette(mid);
+ qproperty-avatarFgColor: palette(text);
+
+ qproperty-bubbleFgColor: palette(text);
+ qproperty-bubbleBgColor: palette(mid);
}
CommunitiesListItem {
|