diff --git a/.config/quickshell/ii/modules/common/Appearance.qml b/.config/quickshell/ii/modules/common/Appearance.qml index f7e3a9eb..ec1c5605 100644 --- a/.config/quickshell/ii/modules/common/Appearance.qml +++ b/.config/quickshell/ii/modules/common/Appearance.qml @@ -180,7 +180,7 @@ Singleton { } rounding: QtObject { - property int unsharpen: 2 + property int unsharpen: 3 property int unsharpenmore: 6 property int verysmall: 8 property int small: 12 diff --git a/.config/quickshell/ii/modules/common/widgets/ClippedProgressBar.qml b/.config/quickshell/ii/modules/common/widgets/ClippedProgressBar.qml index 8fa2f6e0..31bbb7ac 100644 --- a/.config/quickshell/ii/modules/common/widgets/ClippedProgressBar.qml +++ b/.config/quickshell/ii/modules/common/widgets/ClippedProgressBar.qml @@ -12,8 +12,8 @@ ProgressBar { id: root property real valueBarWidth: 30 property real valueBarHeight: 18 - property color highlightColor: Appearance?.colors.colPrimary ?? "#685496" - property color trackColor: ColorUtils.transparentize(highlightColor, 0.3) ?? "#F1D3F9" + property color highlightColor: Appearance?.colors.colOnSecondaryContainer ?? "#685496" + property color trackColor: ColorUtils.transparentize(highlightColor, 0.4) ?? "#F1D3F9" property alias radius: contentItem.radius property string text default property Item textMask: Item { @@ -50,6 +50,7 @@ ProgressBar { top: parent.top bottom: parent.bottom } + radius: Appearance.rounding.unsharpen width: parent.width * root.visualPosition color: root.highlightColor }