summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/main.qml
diff options
context:
space:
mode:
authorGravatar Paul Buxton <paulbuxton.mail@googlemail.com>2019-10-05 02:21:56 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-10-06 11:39:46 -0700
commit65ec16e59d7c55ea9857a1b03db838fe2561986a (patch)
treeeffa45e3d94787d22e7562f28abe487ff14f087f /mobile-widgets/qml/main.qml
parentd82e008b4c1feac9d2bf3f68db9fc15a0718ec05 (diff)
downloadsubsurface-65ec16e59d7c55ea9857a1b03db838fe2561986a.tar.gz
Fix text in darkmode on mobile app.
Signed-off-by: Paul Buxton <paulbuxton.mail@googlemail.com>
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r--mobile-widgets/qml/main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index 0b5288dfd..f7cb266c3 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -449,7 +449,7 @@ if you have network connectivity and want to sync your data to cloud storage."),
function darkTheme() {
Material.theme = Material.Dark
- Material.accent = subsurfaceTheme.darkerPrimaryColor
+ Material.accent = subsurfaceTheme.darkPrimaryColor
subsurfaceTheme.currentTheme = "Dark"
subsurfaceTheme.darkerPrimaryColor = subsurfaceTheme.darkDarkerPrimaryColor
subsurfaceTheme.darkerPrimaryTextColor= subsurfaceTheme.darkDarkerPrimaryTextColor
@@ -547,7 +547,7 @@ if you have network connectivity and want to sync your data to cloud storage."),
property color darkPrimaryColor: "#3F51B5"
property color darkPrimaryTextColor: "#ECECEC"
property color darkLightPrimaryColor: "#C5CAE9"
- property color darkLightPrimaryTextColor: "#212121"
+ property color darkLightPrimaryTextColor: "#ECECEC"
property color darkBackgroundColor: "#303030"
property color darkTextColor: darkPrimaryTextColor
property color darkSecondaryTextColor: "#757575"