feat(dashboard): adjust performance warning color

This commit is contained in:
Kiana Sheibani 2025-11-11 00:32:09 -05:00
parent 13c7526440
commit f62e017536
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -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 {