summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qt-mobile/main.qml4
-rw-r--r--qt-mobile/theme/Theme.qml1
2 files changed, 4 insertions, 1 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml
index 5c8c04b2c..e9cfb5b74 100644
--- a/qt-mobile/main.qml
+++ b/qt-mobile/main.qml
@@ -17,10 +17,14 @@ ApplicationWindow {
Theme.Units {
id: units
+ property int spacing: Math.ceil(gridUnit / 3)
}
Theme.Theme {
id: theme
+ /* Added for subsurface */
+ property color accentColor: "#2d5b9a"
+ property color accentTextColor: "#ececec"
}
Menu {
diff --git a/qt-mobile/theme/Theme.qml b/qt-mobile/theme/Theme.qml
index faf96f96f..2c51ae00f 100644
--- a/qt-mobile/theme/Theme.qml
+++ b/qt-mobile/theme/Theme.qml
@@ -54,5 +54,4 @@ QtObject {
property color complementaryBackgroundColor: Qt.rgba(0,0,0, 0.54)
property color complementaryHoverColor: "#2196F3"
property color complementaryFocusColor: "#2196F3"
-
}