Renamed all color names so they are shorter

This commit is contained in:
quadbyte 2025-08-14 19:52:03 -04:00
parent 9e51fdc932
commit 06f8f93f83
51 changed files with 423 additions and 440 deletions

View file

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