From ed855e5fadb4b2212eebed478cef7ebe04460cc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tinkl?= Date: Mon, 24 Jul 2023 13:15:20 +0200 Subject: [PATCH] fix(StatusBanner): use consistent `warning` color --- ui/StatusQ/src/StatusQ/Controls/StatusBanner.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/StatusQ/src/StatusQ/Controls/StatusBanner.qml b/ui/StatusQ/src/StatusQ/Controls/StatusBanner.qml index 091819a6c2..e15457ee9b 100644 --- a/ui/StatusQ/src/StatusQ/Controls/StatusBanner.qml +++ b/ui/StatusQ/src/StatusQ/Controls/StatusBanner.qml @@ -134,9 +134,9 @@ Column { }, State { when: statusBanner.type === StatusBanner.Type.Warning - PropertyChanges { target: d; backgroundColor: Theme.palette.pinColor3} - PropertyChanges { target: d; bordersColor: Theme.palette.pinColor2} - PropertyChanges { target: d; fontColor: Theme.palette.pinColor1} + PropertyChanges { target: d; backgroundColor: Theme.palette.warningColor3} + PropertyChanges { target: d; bordersColor: Theme.palette.warningColor2} + PropertyChanges { target: d; fontColor: Theme.palette.warningColor1} } ] }