Switched to Material3 colors principle

- works with matugen only for now
- need to restore rosepine
This commit is contained in:
quadbyte 2025-08-14 18:19:02 -04:00
parent 7fced5df95
commit 73c7ba8cdc
55 changed files with 519 additions and 583 deletions

View file

@ -13,7 +13,7 @@ RadioButton {
implicitHeight: 20 * scaling
radius: width * 0.5
color: "transparent"
border.color: root.checked ? Colors.accentPrimary : Colors.textPrimary
border.color: root.checked ? Colors.colorPrimary : Colors.colorOnSurface
border.width: 2
anchors.verticalCenter: parent.verticalCenter
@ -23,7 +23,7 @@ RadioButton {
implicitHeight: Style.marginSmall * scaling
radius: width * 0.5
color: Qt.alpha(Colors.accentPrimary, root.checked ? 1 : 0)
color: Qt.alpha(Colors.colorPrimary, root.checked ? 1 : 0)
}
Behavior on border.color {