diff --git a/qml/PostListItem.qml b/qml/PostListItem.qml index 06b3912..e0c3d20 100644 --- a/qml/PostListItem.qml +++ b/qml/PostListItem.qml @@ -81,7 +81,7 @@ Item { Label { id: t text: title - color: nightmode ? (read ? "#888" : "#aaa") : (read ? "gray" : "black") + color: nightmode ? (read ? "#555" : "#aaa") : (read ? "gray" : "black") font.pointSize: textFontSize textFormat: Text.PlainText wrapMode: Text.WrapAnywhere diff --git a/qml/Sidebar.qml b/qml/Sidebar.qml index c0a07bb..bcb70ee 100644 --- a/qml/Sidebar.qml +++ b/qml/Sidebar.qml @@ -69,7 +69,7 @@ ScrollView { Rectangle { width: listView.currentItem.width height: listView.currentItem.height - color: nightmode ? "#222" : "lightblue" + color: nightmode ? "#444" : "lightblue" opacity: 0.5 y: listView.currentItem.y }