Skip to content

Commit

Permalink
Merge pull request #11 from clawoflight/master
Browse files Browse the repository at this point in the history
Increased contrast in the night mode.
  • Loading branch information
jeena authored Jul 23, 2016
2 parents be009e5 + e3ba054 commit 5b5d122
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qml/PostListItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion qml/Sidebar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 5b5d122

Please sign in to comment.