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

@ -26,9 +26,9 @@ Rectangle {
implicitWidth: size
implicitHeight: size
color: (root.hovering || showFilled) ? Colors.colorPrimary : "transparent"
color: (root.hovering || showFilled) ? Colors.mPrimary : "transparent"
radius: width * 0.5
border.color: showBorder ? Colors.colorPrimary : "transparent"
border.color: showBorder ? Colors.mPrimary : "transparent"
border.width: Math.max(1, Style.borderThin * scaling)
NText {
@ -43,7 +43,7 @@ Rectangle {
"wght": (Font.Normal + Font.Bold) / 2.0
}
color: (root.hovering
|| showFilled) ? Colors.colorOnPrimary : showBorder ? Colors.colorPrimary : Colors.colorOnSurface
|| showFilled) ? Colors.mOnPrimary : showBorder ? Colors.mPrimary : Colors.mOnSurface
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
opacity: root.enabled ? Style.opacityFull : Style.opacityMedium