move theme to styling

This commit is contained in:
Benjamin Palko 2025-09-05 17:30:09 -04:00
parent 467c9bc0e3
commit 4375f6e13d
36 changed files with 68 additions and 67 deletions

View file

@ -15,7 +15,7 @@ ProgressBar {
background: Rectangle {
implicitWidth: 200
implicitHeight: 6
color: Theme.palette.base100
color: Styling.theme.base100
radius: 8
}
@ -28,7 +28,7 @@ ProgressBar {
width: control.visualPosition * parent.width
height: parent.height
radius: 8
color: Theme.palette.primary
color: Styling.theme.primary
visible: !control.indeterminate
}
@ -41,7 +41,7 @@ ProgressBar {
Row {
Rectangle {
id: rect
color: Theme.palette.primary
color: Styling.theme.primary
width: 40
height: control.height
}