diff options
author | Paul Buxton <paulbuxton.mail@googlemail.com> | 2019-10-05 02:21:56 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-06 11:39:46 -0700 |
commit | 65ec16e59d7c55ea9857a1b03db838fe2561986a (patch) | |
tree | effa45e3d94787d22e7562f28abe487ff14f087f /mobile-widgets/qml/main.qml | |
parent | d82e008b4c1feac9d2bf3f68db9fc15a0718ec05 (diff) | |
download | subsurface-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.qml | 4 |
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" |