Merge pull request #11 from clawoflight/master

Increased contrast in the night mode.
This commit is contained in:
Jeena 2016-07-23 12:32:28 +02:00 committed by GitHub
commit 5b5d122a1c
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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
}