From 7a04cccf0c262703ed713a800a3389cb83126c6d Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Tue, 16 Sep 2025 10:33:42 -0400 Subject: [PATCH] should use Styling --- modules/pomodoro/Pomodoro.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/pomodoro/Pomodoro.qml b/modules/pomodoro/Pomodoro.qml index 034e479..eaa2d95 100644 --- a/modules/pomodoro/Pomodoro.qml +++ b/modules/pomodoro/Pomodoro.qml @@ -55,7 +55,7 @@ StyledPanelWindow { id: circle radius: 150 borderColor: Styling.theme.base100 - strokeColor: PomodoroService.state == "timer" ? Theme.palette.primary : Theme.palette.warning + strokeColor: PomodoroService.state == "timer" ? Styling.theme.primary : Styling.theme.warning strokeWidth: 12 fillColor: button.hovered ? Styling.theme.primary : "transparent" percentage: (PomodoroService.state == "timer" ? (PomodoroService.initialTime - PomodoroService.remainingTime) : PomodoroService.remainingTime) / PomodoroService.initialTime % 1