scheme setter, light mode?

This commit is contained in:
Zacharias-Brohn
2026-02-19 01:10:46 +01:00
parent 646f70a98d
commit 7f8a516b4b
16 changed files with 333 additions and 42 deletions
+3 -2
View File
@@ -15,8 +15,9 @@ Item {
implicitWidth: resourceRowLayout.x < 0 ? 0 : resourceRowLayout.implicitWidth
implicitHeight: 22
property bool warning: percentage * 100 >= warningThreshold
property color usageColor: warning ? DynamicColors.palette.m3error : DynamicColors.palette.m3primary
property color borderColor: warning ? DynamicColors.palette.m3onError : DynamicColors.palette.m3onPrimary
required property color mainColor
property color usageColor: warning ? DynamicColors.palette.m3error : mainColor
property color borderColor: warning ? DynamicColors.palette.m3onError : mainColor
Behavior on percentage {
NumberAnimation {