From 35721b468ca20f6247ac04c018bc98fcd8311db5 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Wed, 25 Aug 2021 22:51:03 +0200 Subject: [PATCH] Add constants for gray to style base --- nymea-app/ui/StyleBase.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nymea-app/ui/StyleBase.qml b/nymea-app/ui/StyleBase.qml index ada76b8c..9127d69b 100644 --- a/nymea-app/ui/StyleBase.qml +++ b/nymea-app/ui/StyleBase.qml @@ -100,8 +100,10 @@ Item { "currentPower": "deepskyblue", } - readonly property color red: "#952727" - readonly property color white: "white" + property color red: "#952727" + property color white: "white" + property color gray: "gray" + property color darkGray: "darkGray" readonly property int fastAnimationDuration: 100 readonly property int animationDuration: 150