QML UI: make the app blue

White is boring, so lets change the color of the android app to
a more pleasing subsurface blue.

Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Joakim Bygdell 2015-07-26 13:59:30 +02:00 committed by Dirk Hohndel
parent f1f13ed407
commit 64601672a8

View file

@ -61,6 +61,7 @@ ApplicationWindow {
spacing: prefsButton.height * 0.1
Rectangle {
id: topPart
color: "#2C4882"
Layout.minimumHeight: prefsButton.height * 1.2
Layout.fillWidth: true
anchors.bottom: detailsPage.top
@ -94,6 +95,7 @@ ApplicationWindow {
DiveList {
anchors.fill: detailsPage
id: diveDetails
color: "#2C4882"
}
}