more more colors

This commit is contained in:
Damocles 2026-04-12 14:51:21 +02:00
parent c4e4b6ebb2
commit ed72d81f3b
14 changed files with 22 additions and 10 deletions

View file

@ -17,12 +17,12 @@ M.BarSection {
M.BarIcon {
icon: root.muted ? "\uF026" : (root.volume > 0.5 ? "\uF028" : (root.volume > 0 ? "\uF027" : "\uF026"))
color: root.muted ? M.Theme.base04 : M.Theme.base05
color: root.muted ? M.Theme.base04 : M.Theme.base0E
anchors.verticalCenter: parent.verticalCenter
}
M.BarLabel {
label: Math.round(root.volume * 100) + "%"
color: root.muted ? M.Theme.base04 : M.Theme.base05
color: root.muted ? M.Theme.base04 : M.Theme.base0E
anchors.verticalCenter: parent.verticalCenter
}