diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2017-07-14 15:37:02 +0200 |
---|---|---|
committer | Joakim Bygdell <j.bygdell@gmail.com> | 2017-07-14 15:37:59 +0200 |
commit | 2f0873a7c131ac793906bba2fafe126945a7da8b (patch) | |
tree | 0b19ba736a32fc6c4a2b16b1ca28cf01a57ee96c | |
parent | b7b2e813ad21cb4c8d59a7a7940110c346e3bead (diff) | |
parent | b7b2e813ad21cb4c8d59a7a7940110c346e3bead (diff) | |
download | subsurface-2f0873a7c131ac793906bba2fafe126945a7da8b.tar.gz |
QML UI: Don't use black for dark theme
This sets the background color to the recommended hue for dark themes.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index e870bfc9b..70b19b18a 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -392,7 +392,7 @@ if you have network connectivity and want to sync your data to cloud storage."), property color darkPrimaryTextColor: "#ECECEC" property color darkLightPrimaryColor: "#C5CAE9" property color darkLightPrimaryTextColor: "#212121" - property color darkBackgroundColor: "#000000" + property color darkBackgroundColor: "#303030" property color darkTextColor: darkPrimaryTextColor property color darkSecondaryTextColor: "#757575" |