mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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:
parent
65a0a9c7eb
commit
fe8b7e3b72
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue