From cf7cc1d9707399c3cc270f4b3c6987175d7baf49 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 25 Apr 2017 15:31:34 +0200 Subject: Hardcode colors in a single place --- components/kube/contents/ui/Kube.qml | 2 +- framework/qml/Colors.qml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/components/kube/contents/ui/Kube.qml b/components/kube/contents/ui/Kube.qml index d2d2fad2..33abaadb 100644 --- a/components/kube/contents/ui/Kube.qml +++ b/components/kube/contents/ui/Kube.qml @@ -106,7 +106,7 @@ Controls2.ApplicationWindow { bottom: parent.bottom } width: Kube.Units.gridUnit + Kube.Units.largeSpacing - color: "#232629"//Kube.Colors.textColor + color: Kube.Colors.statusbarColor Column { anchors { diff --git a/framework/qml/Colors.qml b/framework/qml/Colors.qml index e3c53a1f..523d5b23 100644 --- a/framework/qml/Colors.qml +++ b/framework/qml/Colors.qml @@ -31,5 +31,6 @@ Item { property string positiveColor: "#27ae60" property string warningColor: "#f67400" property string negativeColor: "#ed1515" + property string statusbarColor: "#232629" } -- cgit v1.2.3