aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-23 12:29:22 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-23 18:48:41 -0700
commitdac9ce578b7ddf78c1421911546862d2bc2cb12a (patch)
tree8d6411a07c0b052c16a048640922b7bf4995b78d
parent3f055ac9cbd6941393c27cce89c9c7e598e44a39 (diff)
downloadsubsurface-dac9ce578b7ddf78c1421911546862d2bc2cb12a.tar.gz
QML UI: clean up the setting of theme colors
Let's have names for the colors in each theme and assign those named values to the theme colors when switching themes. This way other pages can access the colors that are not in the current theme (for example for a theme switcher). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--mobile-widgets/qml/main.qml95
1 files changed, 64 insertions, 31 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index 5a4c938b1..b57ff2e2a 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -328,37 +328,40 @@ Kirigami.ApplicationWindow {
}
function blueTheme() {
- subsurfaceTheme.darkPrimaryColor = "#303F9f"
- subsurfaceTheme.darkPrimaryTextColor= "#ECECEC"
- subsurfaceTheme.primaryColor = "#3F51B5"
- subsurfaceTheme.primaryTextColor = "#ECECEC"
- subsurfaceTheme.lightPrimaryColor = "#C5CAE9"
- subsurfaceTheme.lightPrimaryTextColor = "#212121"
- subsurfaceTheme.backgroundColor = "#eff0f1"
+ subsurfaceTheme.currentTheme = "Blue"
+ subsurfaceTheme.darkerPrimaryColor = subsurfaceTheme.blueDarkerPrimaryColor
+ subsurfaceTheme.darkerPrimaryTextColor= subsurfaceTheme.blueDarkerPrimaryTextColor
+ subsurfaceTheme.primaryColor = subsurfaceTheme.bluePrimaryColor
+ subsurfaceTheme.primaryTextColor = subsurfaceTheme.bluePrimaryTextColor
+ subsurfaceTheme.lightPrimaryColor = subsurfaceTheme.blueLightPrimaryColor
+ subsurfaceTheme.lightPrimaryTextColor = subsurfaceTheme.blueLightPrimaryTextColor
+ subsurfaceTheme.backgroundColor = subsurfaceTheme.blueBackgroundColor
subsurfaceTheme.diveListTextColor = subsurfaceTheme.lightPrimaryTextColor
manager.setStatusbarColor(subsurfaceTheme.darkPrimaryColor)
}
function pinkTheme() {
- subsurfaceTheme.darkPrimaryColor = "#FF1493"
- subsurfaceTheme.darkPrimaryTextColor = "#ECECEC"
- subsurfaceTheme.primaryColor = "#FF69B4"
- subsurfaceTheme.primaryTextColor = "#212121"
- subsurfaceTheme.lightPrimaryColor = "#FFDDF4"
- subsurfaceTheme.lightPrimaryTextColor = "#212121"
- subsurfaceTheme.backgroundColor = "#eff0f1"
+ subsurfaceTheme.currentTheme = "Pink"
+ subsurfaceTheme.darkerPrimaryColor = subsurfaceTheme.pinkDarkerPrimaryColor
+ subsurfaceTheme.darkerPrimaryTextColor = subsurfaceTheme.pinkDarkerPrimaryTextColor
+ subsurfaceTheme.primaryColor = subsurfaceTheme.pinkPrimaryColor
+ subsurfaceTheme.primaryTextColor = subsurfaceTheme.pinkPrimaryTextColor
+ subsurfaceTheme.lightPrimaryColor = subsurfaceTheme.pinkLightPrimaryColor
+ subsurfaceTheme.lightPrimaryTextColor = subsurfaceTheme.pinkLightPrimaryTextColor
+ subsurfaceTheme.backgroundColor = subsurfaceTheme.pinkBackgroundColor
subsurfaceTheme.diveListTextColor = subsurfaceTheme.lightPrimaryTextColor
manager.setStatusbarColor(subsurfaceTheme.darkPrimaryColor)
}
function darkTheme() {
- subsurfaceTheme.darkPrimaryColor = "#303F9f"
- subsurfaceTheme.darkPrimaryTextColor= "#ECECEC"
- subsurfaceTheme.primaryColor = "#3F51B5"
- subsurfaceTheme.primaryTextColor = "#ECECEC"
- subsurfaceTheme.lightPrimaryColor = "#C5CAE9"
- subsurfaceTheme.lightPrimaryTextColor = "#212121"
- subsurfaceTheme.backgroundColor = "#000000"
+ subsurfaceTheme.currentTheme = "Dark"
+ subsurfaceTheme.darkerPrimaryColor = subsurfaceTheme.darkDarkerPrimaryColor
+ subsurfaceTheme.darkerPrimaryTextColor= subsurfaceTheme.darkDarkerPrimaryTextColor
+ subsurfaceTheme.primaryColor = subsurfaceTheme.darkPrimaryColor
+ subsurfaceTheme.primaryTextColor = subsurfaceTheme.darkPrimaryTextColor
+ subsurfaceTheme.lightPrimaryColor = subsurfaceTheme.darkLightPrimaryColor
+ subsurfaceTheme.lightPrimaryTextColor = subsurfaceTheme.darkLightPrimaryTextColor
+ subsurfaceTheme.backgroundColor = subsurfaceTheme.darkBackgroundColor
subsurfaceTheme.diveListTextColor = subsurfaceTheme.primaryTextColor
manager.setStatusbarColor(subsurfaceTheme.darkPrimaryColor)
}
@@ -368,17 +371,45 @@ Kirigami.ApplicationWindow {
property int titlePointSize: Math.round(fontMetrics.font.pointSize * 1.5)
property int smallPointSize: Math.round(fontMetrics.font.pointSize * 0.8)
- property color darkPrimaryColor: "#303F9f"
+ // colors currently in use
+ property string currentTheme
+ property color darkerPrimaryColor
+ property color darkerPrimaryTextColor
+ property color primaryColor
+ property color primaryTextColor
+ property color lightPrimaryColor
+ property color lightPrimaryTextColor
+ property color backgroundColor
+ property color diveListTextColor
+
+ // colors for the blue theme
+ property color blueDarkerPrimaryColor: "#303F9f"
+ property color blueDarkerPrimaryTextColor: "#ECECEC"
+ property color bluePrimaryColor: "#3F51B5"
+ property color bluePrimaryTextColor: "#ECECEC"
+ property color blueLightPrimaryColor: "#C5CAE9"
+ property color blueLightPrimaryTextColor: "#212121"
+ property color blueBackgroundColor: "#eff0f1"
+
+ // colors for the pink theme
+ property color pinkDarkerPrimaryColor: "#FF1493"
+ property color pinkDarkerPrimaryTextColor: "#ECECEC"
+ property color pinkPrimaryColor: "#FF69B4"
+ property color pinkPrimaryTextColor: "#212121"
+ property color pinkLightPrimaryColor: "#FFDDF4"
+ property color pinkLightPrimaryTextColor: "#212121"
+ property color pinkBackgroundColor: "#eff0f1"
+
+ // colors for the dark theme
+ property color darkDarkerPrimaryColor: "#303F9f"
+ property color darkDarkerPrimaryTextColor: "#ECECEC"
+ property color darkPrimaryColor: "#3F51B5"
property color darkPrimaryTextColor: "#ECECEC"
- property color primaryColor: "#3F51B5"
- property color primaryTextColor: "#ECECEC"
- property color lightPrimaryColor: "#C5CAE9"
- property color lightPrimaryTextColor: "#212121"
- property color contrastAccentColor: "#FF9800" // used for delete button
-
- property color backgroundColor: "#eff0f1"
+ property color darkLightPrimaryColor: "#C5CAE9"
+ property color darkLightPrimaryTextColor: "#212121"
+ property color darkBackgroundColor: "#000000"
- property color diveListTextColor: lightPrimaryTextColor
+ property color contrastAccentColor: "#FF9800" // used for delete button
property int columnWidth: Math.round(rootItem.width/(Kirigami.Units.gridUnit*28)) > 0 ? Math.round(rootItem.width / Math.round(rootItem.width/(Kirigami.Units.gridUnit*28))) : rootItem.width
Component.onCompleted: {
@@ -387,7 +418,9 @@ Kirigami.ApplicationWindow {
Kirigami.Theme.backgroundColor = Qt.binding(function() { return backgroundColor })
Kirigami.Theme.textColor = Qt.binding(function() { return diveListTextColor })
Kirigami.Theme.buttonHoverColor = Qt.binding(function() { return lightPrimaryColor })
- manager.setStatusbarColor(darkPrimaryColor)
+
+ // this needs to pick the theme from persistent preference settings
+ blueTheme()
}
}
property Item stackView: pageStack