diff --git a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml index a1a33c472..efb034609 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml @@ -34,7 +34,7 @@ Item { property color colShadow: Appearance.colors.colShadow property color colBackground: Appearance.colors.colSecondaryContainer property color colOnBackground: ColorUtils.mix(Appearance.colors.colPrimary, Appearance.colors.colSecondaryContainer, 0.5) - property color colHourHand: Appearance.colors.colPrimary + property color colHourHand: Appearance.colors.colPrimaryContainer property color colMinuteHand: Appearance.colors.colSecondary property color colSecondHand: Appearance.colors.colTertiary property color colOnHourHand: Appearance.colors.colOnPrimary diff --git a/.config/quickshell/ii/modules/background/cookieClock/HourHand.qml b/.config/quickshell/ii/modules/background/cookieClock/HourHand.qml index a20352715..045a6aee9 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/HourHand.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/HourHand.qml @@ -40,7 +40,7 @@ Item { border.color: root.color border.width: 4 - opacity: 0.5 + Behavior on x { animation: Appearance.animation.elementResize.numberAnimation.createObject(this) diff --git a/.config/quickshell/ii/modules/background/cookieClock/MinuteHand.qml b/.config/quickshell/ii/modules/background/cookieClock/MinuteHand.qml index 261932572..4ff37ae90 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/MinuteHand.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/MinuteHand.qml @@ -38,7 +38,8 @@ Item { height: root.handWidth radius: root.style === "classic" ? 2 : root.handWidth / 2 - color: root.color + color: Appearance.colors.colSecondary + opacity: 0.9 Behavior on height { animation: Appearance.animation.elementResize.numberAnimation.createObject(this)