3 files changed, 12 insertions, 0 deletions
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index 86056bb2..e81fa0b8 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -3,6 +3,10 @@ QLabel {
color: #caccd1;
}
+TimelineItem {
+ qproperty-backgroundColor: #202228;
+}
+
#chatPage,
#chatPage > * {
background-color: #202228;
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index ca5a8f0d..468ae0f1 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -3,6 +3,10 @@ QLabel {
color: #333;
}
+TimelineItem {
+ qproperty-backgroundColor: white;
+}
+
#chatPage,
#chatPage > * {
background-color: white;
diff --git a/resources/styles/system.qss b/resources/styles/system.qss
index 45263e96..6663ee6b 100644
--- a/resources/styles/system.qss
+++ b/resources/styles/system.qss
@@ -3,6 +3,10 @@ TypingDisplay {
qproperty-backgroundColor: palette(window);
}
+TimelineItem {
+ qproperty-backgroundColor: palette(window);
+}
+
TimelineView,
TimelineView > * {
border: none;
|