mobile-widget/qml: add missing colors to dark theme

add missing colors so that dark theme contains the
same colors as "colors in use".

Update the darkTheme() to correctly copy colors from
pink theme

Signed-off-by: jan Iversen <jan@casacondor.com>
This commit is contained in:
jan Iversen 2020-01-18 13:21:25 +01:00 committed by Dirk Hohndel
parent 65a0a9c7eb
commit fe8b7e3b72

View file

@ -620,6 +620,8 @@ if you have network connectivity and want to sync your data to cloud storage."),
subsurfaceTheme.secondaryTextColor = subsurfaceTheme.darkSecondaryTextColor
manager.setStatusbarColor(subsurfaceTheme.darkerPrimaryColor)
subsurfaceTheme.drawerColor = subsurfaceTheme.darkDrawerColor
subsurfaceTheme.contrastAccentColor = subsurfaceTheme.darkContrastAccentColor
subsurfaceTheme.lightDrawerColor = subsurfaceTheme.darkLightDrawerColor
subsurfaceTheme.iconStyle = "-dark"
}
@ -722,6 +724,9 @@ if you have network connectivity and want to sync your data to cloud storage."),
property color darkTextColor: darkPrimaryTextColor
property color darkSecondaryTextColor: "#757575"
property color darkDrawerColor: "#424242"
property color darkLightDrawerColor: "#FFFFFF"
property color darkContrastAccentColor: "#FF5722" // used for delete button
property int initialWidth: rootItem.width
property int initialHeight: rootItem.height