summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/main.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-20 16:21:47 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-20 16:21:47 -0700
commitfd5cd5ebf06d76216557463e6a42c5681b748ba1 (patch)
treea096dc98f3f6dfd327283051352a3ab6b670184c /mobile-widgets/qml/main.qml
parent7a6f87405ab2695022248d01cb9df3f11338177b (diff)
downloadsubsurface-fd5cd5ebf06d76216557463e6a42c5681b748ba1.tar.gz
QML UI: DiveList: playing with different colors
Make the accent color much lighter, don't have a solid bar on the left for dives that are part of a trip. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r--mobile-widgets/qml/main.qml3
1 files changed, 1 insertions, 2 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index 6e64a1d2f..13cc3eadd 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -311,11 +311,10 @@ Kirigami.ApplicationWindow {
id: subsurfaceTheme
property int titlePointSize: Math.round(fontMetrics.font.pointSize * 1.5)
property int smallPointSize: Math.round(fontMetrics.font.pointSize * 0.8)
- property color accentColor: "#2d5b9a"
+ property color accentColor: "#40C0FF" // "#2d5b9a"
property color shadedColor: "#132744"
property color accentTextColor: "#ececec"
property color diveListTextColor: "#000000" // the Kirigami theme text color is too light
- property color darkBackgroundColor: "#eeeeee"
property int columnWidth: Math.round(rootItem.width/(Kirigami.Units.gridUnit*28)) > 0 ? Math.round(rootItem.width / Math.round(rootItem.width/(Kirigami.Units.gridUnit*28))) : rootItem.width
}