mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
mobile-widget/qml: add missing colors to pink theme
add missing colors so that pink theme contains the same colors as "colors in use". Update the pinkTheme() to correctly copy colors from pink theme Signed-off-by: jan Iversen <jan@casacondor.com>
This commit is contained in:
parent
f17aeb92e3
commit
65a0a9c7eb
1 changed files with 6 additions and 1 deletions
|
@ -599,7 +599,9 @@ if you have network connectivity and want to sync your data to cloud storage."),
|
|||
subsurfaceTheme.textColor = subsurfaceTheme.pinkTextColor
|
||||
subsurfaceTheme.secondaryTextColor = subsurfaceTheme.pinkSecondaryTextColor
|
||||
manager.setStatusbarColor(subsurfaceTheme.darkerPrimaryColor)
|
||||
subsurfaceTheme.drawerColor = subsurfaceTheme.lightDrawerColor
|
||||
subsurfaceTheme.drawerColor = subsurfaceTheme.pinkLightDrawerColor
|
||||
subsurfaceTheme.contrastAccentColor = subsurfaceTheme.pinkContrastAccentColor
|
||||
subsurfaceTheme.lightDrawerColor = subsurfaceTheme.pinkLightDrawerColor
|
||||
subsurfaceTheme.iconStyle = ""
|
||||
}
|
||||
|
||||
|
@ -705,6 +707,9 @@ if you have network connectivity and want to sync your data to cloud storage."),
|
|||
property color pinkBackgroundColor: "#eff0f1"
|
||||
property color pinkTextColor: pinkLightPrimaryTextColor
|
||||
property color pinkSecondaryTextColor: "#757575"
|
||||
property color pinkLightDrawerColor: "#FFFFFF"
|
||||
property color pinkDrawerColor: pinkLightDrawerColor
|
||||
property color pinkContrastAccentColor: "#FF5722" // used for delete button
|
||||
|
||||
// colors for the dark theme
|
||||
property color darkDarkerPrimaryColor: "#303F9f"
|
||||
|
|
Loading…
Reference in a new issue