align module colors to their group accent

This commit is contained in:
Damocles 2026-04-12 17:00:13 +02:00
parent 5b1c355917
commit 160937e674
10 changed files with 15 additions and 15 deletions

View file

@ -44,12 +44,12 @@ M.BarSection {
return root.count > 0 ? "\uDB80\uDCA0" : "\uDB82\uDE93";
return root.count > 0 ? "\uDB84\uDD6B" : "\uDB80\uDC9C";
}
color: root.count > 0 ? M.Theme.base09 : (root.dnd ? M.Theme.base04 : M.Theme.base09)
color: root.count > 0 ? M.Theme.base0D : (root.dnd ? M.Theme.base04 : M.Theme.base0D)
anchors.verticalCenter: parent.verticalCenter
}
M.BarLabel {
label: root.count > 0 ? String(root.count) : ""
color: M.Theme.base09
color: M.Theme.base0D
anchors.verticalCenter: parent.verticalCenter
}