diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-06-21 11:54:33 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-06-21 13:34:15 -0700 |
commit | 71d9aafcd68bc31ba4d75509eb42272c813a1ee6 (patch) | |
tree | 5b71507109661dcadd95965b2f2879925895c932 | |
parent | 4651454557dd3549a250263d34f3cd1b55b18c73 (diff) | |
download | subsurface-71d9aafcd68bc31ba4d75509eb42272c813a1ee6.tar.gz |
QML UI: Linus requested Hot Pink as color scheme
He started the project, he gets to have his color preference.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/main.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index f0d11dca7..7fb2eec7b 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -311,11 +311,11 @@ Kirigami.ApplicationWindow { property int titlePointSize: Math.round(fontMetrics.font.pointSize * 1.5) property int smallPointSize: Math.round(fontMetrics.font.pointSize * 0.8) - property color darkPrimaryColor: "#303F9f" + property color darkPrimaryColor: "#FF1493" property color darkPrimaryTextColor: "#ECECEC" - property color primaryColor: "#3F51B5" + property color primaryColor: "#FF69B4" property color primaryTextColor: "#ECECEC" - property color lightPrimaryColor: "#C5CAE9" + property color lightPrimaryColor: "#FFDDF4" property color lightPrimaryTextColor: "#212121" property color contrastAccentColor: "#FF9800" // used for delete button |