diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2015-07-26 13:59:30 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-26 06:19:47 -0700 |
commit | 64601672a89d4686e9291ad2d1a78df021958bef (patch) | |
tree | a16dcad006e8a4d182a8f0c9260110f421e927c7 /qt-mobile | |
parent | f1f13ed4072683901b11cb34bd1c9ad40e1e2cfa (diff) | |
download | subsurface-64601672a89d4686e9291ad2d1a78df021958bef.tar.gz |
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>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/main.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml index 812a27429..4f0bb16e7 100644 --- a/qt-mobile/main.qml +++ b/qt-mobile/main.qml @@ -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" } } |