diff options
author | jan Iversen <jan@casacondor.com> | 2020-01-18 13:15:20 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-18 12:44:05 -0800 |
commit | f17aeb92e3ed7e31c73c2f6f57e0e596e6957dc4 (patch) | |
tree | e9a1b4d4737c6499951b76ebf2dfad2f0a7ff945 /mobile-widgets | |
parent | 5c2e08199f62c4b38a2fecedf5cb586143d24eb1 (diff) | |
download | subsurface-f17aeb92e3ed7e31c73c2f6f57e0e596e6957dc4.tar.gz |
mobile-widget/qml: add missing colors to blue theme
add missing colors so that blue theme contains the
same colors as "colors in use".
Update the blueTheme() to correctly copy colors from
blue theme
Signed-off-by: jan Iversen <jan@casacondor.com>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/main.qml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 5362184f5..d9c60a06e 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -579,7 +579,9 @@ if you have network connectivity and want to sync your data to cloud storage."), subsurfaceTheme.textColor = subsurfaceTheme.blueTextColor subsurfaceTheme.secondaryTextColor = subsurfaceTheme.blueSecondaryTextColor manager.setStatusbarColor(subsurfaceTheme.darkerPrimaryColor) - subsurfaceTheme.drawerColor = subsurfaceTheme.lightDrawerColor + subsurfaceTheme.drawerColor = subsurfaceTheme.blueLightDrawerColor + subsurfaceTheme.contrastAccentColor = subsurfaceTheme.blueContrastAccentColor + subsurfaceTheme.lightDrawerColor = subsurfaceTheme.blueLightDrawerColor subsurfaceTheme.iconStyle = "-dark" } @@ -689,6 +691,9 @@ if you have network connectivity and want to sync your data to cloud storage."), property color blueBackgroundColor: "#eff0f1" property color blueTextColor: blueLightPrimaryTextColor property color blueSecondaryTextColor: "#757575" + property color blueLightDrawerColor: "#FFFFFF" + property color blueDrawerColor: blueLightDrawerColor + property color blueContrastAccentColor: "#FF5722" // used for delete button // colors for the pink theme property color pinkDarkerPrimaryColor: "#C2185B" |