From f62e0175365bf9cb7883d423b0f9c9903eeb077f Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Tue, 11 Nov 2025 00:32:09 -0500 Subject: [PATCH] feat(dashboard): adjust performance warning color --- modules/dashboard/Performance.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/dashboard/Performance.qml b/modules/dashboard/Performance.qml index 39c51d4..5e7afab 100644 --- a/modules/dashboard/Performance.qml +++ b/modules/dashboard/Performance.qml @@ -107,7 +107,7 @@ ColumnLayout { Column { anchors.centerIn: parent - readonly property color color: res.warning1 ? Color.mute(Config.colors.error, 1.3, 1.2) : + readonly property color color: res.warning1 ? Color.mute(Config.colors.error, 1.2, 1.1) : res.value1 === 0 ? Config.colors.inactive : Config.colors.primary CustomText { @@ -133,7 +133,7 @@ ColumnLayout { anchors.horizontalCenterOffset: -res.thickness / 2 anchors.topMargin: res.thickness / 2 + 5 - readonly property color color: res.warning2 ? Color.mute(Config.colors.error, 1.3, 1.2) : + readonly property color color: res.warning2 ? Color.mute(Config.colors.error, 1.2, 1.1) : res.value2 === 0 ? Config.colors.inactive : Config.colors.primary CustomText {