Increased contrast in the night mode.
This commit is contained in:
parent
be009e51ac
commit
e3ba0540a5
2 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@ Item {
|
||||||
Label {
|
Label {
|
||||||
id: t
|
id: t
|
||||||
text: title
|
text: title
|
||||||
color: nightmode ? (read ? "#888" : "#aaa") : (read ? "gray" : "black")
|
color: nightmode ? (read ? "#555" : "#aaa") : (read ? "gray" : "black")
|
||||||
font.pointSize: textFontSize
|
font.pointSize: textFontSize
|
||||||
textFormat: Text.PlainText
|
textFormat: Text.PlainText
|
||||||
wrapMode: Text.WrapAnywhere
|
wrapMode: Text.WrapAnywhere
|
||||||
|
|
|
@ -69,7 +69,7 @@ ScrollView {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: listView.currentItem.width
|
width: listView.currentItem.width
|
||||||
height: listView.currentItem.height
|
height: listView.currentItem.height
|
||||||
color: nightmode ? "#222" : "lightblue"
|
color: nightmode ? "#444" : "lightblue"
|
||||||
opacity: 0.5
|
opacity: 0.5
|
||||||
y: listView.currentItem.y
|
y: listView.currentItem.y
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue