summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/kube/qml/Kube.qml2
-rw-r--r--framework/qml/TreeView.qml2
-rw-r--r--framework/qml/View.qml2
-rw-r--r--views/calendar/qml/View.qml2
-rw-r--r--views/composer/qml/View.qml4
-rw-r--r--views/search/qml/View.qml2
-rw-r--r--views/todo/qml/View.qml2
7 files changed, 8 insertions, 8 deletions
diff --git a/components/kube/qml/Kube.qml b/components/kube/qml/Kube.qml
index b158e1e8..8cbe8691 100644
--- a/components/kube/qml/Kube.qml
+++ b/components/kube/qml/Kube.qml
@@ -136,7 +136,7 @@ Controls2.ApplicationWindow {
136 bottom: mainContent.bottom 136 bottom: mainContent.bottom
137 } 137 }
138 width: app.sidebarWidth 138 width: app.sidebarWidth
139 color: Kube.Colors.textColor 139 color: Kube.Colors.darkBackgroundColor
140 140
141 Rectangle { 141 Rectangle {
142 anchors.right: parent.right 142 anchors.right: parent.right
diff --git a/framework/qml/TreeView.qml b/framework/qml/TreeView.qml
index c4a1a2ab..3f30959f 100644
--- a/framework/qml/TreeView.qml
+++ b/framework/qml/TreeView.qml
@@ -175,7 +175,7 @@ FocusScope {
175 text: styleData.isExpanded ? "-" : "+" 175 text: styleData.isExpanded ? "-" : "+"
176 } 176 }
177 177
178 backgroundColor: Kube.Colors.textColor 178 backgroundColor: Kube.Colors.darkBackgroundColor
179 highlightedTextColor: Kube.Colors.highlightedTextColor 179 highlightedTextColor: Kube.Colors.highlightedTextColor
180 } 180 }
181 } 181 }
diff --git a/framework/qml/View.qml b/framework/qml/View.qml
index 2cc8663f..9daa76a8 100644
--- a/framework/qml/View.qml
+++ b/framework/qml/View.qml
@@ -88,7 +88,7 @@ FocusScope {
88 left: container.left 88 left: container.left
89 } 89 }
90 z: 1 90 z: 1
91 color: Kube.Colors.textColor 91 color: Kube.Colors.darkBackgroundColor
92 iconName: Kube.Icons.goBack_inverted 92 iconName: Kube.Icons.goBack_inverted
93 visible: currentIndex > 0 93 visible: currentIndex > 0
94 onClicked: decrementCurrentIndex() 94 onClicked: decrementCurrentIndex()
diff --git a/views/calendar/qml/View.qml b/views/calendar/qml/View.qml
index f870a850..c46b9480 100644
--- a/views/calendar/qml/View.qml
+++ b/views/calendar/qml/View.qml
@@ -34,7 +34,7 @@ RowLayout {
34 Rectangle { 34 Rectangle {
35 width: Kube.Units.gridUnit * 10 35 width: Kube.Units.gridUnit * 10
36 Layout.fillHeight: parent.height 36 Layout.fillHeight: parent.height
37 color: Kube.Colors.textColor 37 color: Kube.Colors.darkBackgroundColor
38 38
39 Kube.PositiveButton { 39 Kube.PositiveButton {
40 id: newEventButton 40 id: newEventButton
diff --git a/views/composer/qml/View.qml b/views/composer/qml/View.qml
index babe5f47..97604456 100644
--- a/views/composer/qml/View.qml
+++ b/views/composer/qml/View.qml
@@ -108,7 +108,7 @@ Kube.View {
108 width: Kube.Units.gridUnit * 15 108 width: Kube.Units.gridUnit * 15
109 Layout.minimumWidth: Kube.Units.gridUnit * 5 109 Layout.minimumWidth: Kube.Units.gridUnit * 5
110 110
111 color: Kube.Colors.textColor 111 color: Kube.Colors.darkBackgroundColor
112 112
113 ColumnLayout { 113 ColumnLayout {
114 114
@@ -181,7 +181,7 @@ Kube.View {
181 delegate: Kube.ListDelegate { 181 delegate: Kube.ListDelegate {
182 id: delegateRoot 182 id: delegateRoot
183 183
184 color: Kube.Colors.textColor 184 color: Kube.Colors.darkBackgroundColor
185 border.width: 0 185 border.width: 0
186 186
187 Item { 187 Item {
diff --git a/views/search/qml/View.qml b/views/search/qml/View.qml
index d63f6d1f..63e56e44 100644
--- a/views/search/qml/View.qml
+++ b/views/search/qml/View.qml
@@ -35,7 +35,7 @@ FocusScope {
35 id: filterField 35 id: filterField
36 Layout.fillWidth: true 36 Layout.fillWidth: true
37 height: Kube.Units.gridUnit * 2 37 height: Kube.Units.gridUnit * 2
38 color: Kube.Colors.textColor 38 color: Kube.Colors.darkBackgroundColor
39 39
40 function clearSearch() { 40 function clearSearch() {
41 find.text = "" 41 find.text = ""
diff --git a/views/todo/qml/View.qml b/views/todo/qml/View.qml
index bf7b7dd6..ca2bacc1 100644
--- a/views/todo/qml/View.qml
+++ b/views/todo/qml/View.qml
@@ -33,7 +33,7 @@ FocusScope {
33 Rectangle { 33 Rectangle {
34 width: Kube.Units.gridUnit * 10 34 width: Kube.Units.gridUnit * 10
35 Layout.fillHeight: parent.height 35 Layout.fillHeight: parent.height
36 color: Kube.Colors.textColor 36 color: Kube.Colors.darkBackgroundColor
37 37
38 Kube.PositiveButton { 38 Kube.PositiveButton {
39 id: newTaskButton 39 id: newTaskButton