From ce69aec988f31533cb2ec9dac7d3b9fd69b1e676 Mon Sep 17 00:00:00 2001 From: rzen Date: Sun, 21 Jun 2026 09:16:55 -0400 Subject: [PATCH] Tint the complication glyph with the watch face color Mark the dumbbell .widgetAccentable() so the watch face paints it with its main accent color instead of leaving it white. --- Workouts Watch Widget/WorkoutsWatchWidget.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Workouts Watch Widget/WorkoutsWatchWidget.swift b/Workouts Watch Widget/WorkoutsWatchWidget.swift index af8a66a..c4fce48 100644 --- a/Workouts Watch Widget/WorkoutsWatchWidget.swift +++ b/Workouts Watch Widget/WorkoutsWatchWidget.swift @@ -32,9 +32,12 @@ private struct LauncherView: View { // The app icon's dumbbell runs lower-left to upper-right; tilt the glyph // counter-clockwise to match (SwiftUI rotates clockwise for positive angles). + // `.widgetAccentable()` puts it in the accent group so the watch face tints + // it with its main color instead of leaving it white. private var dumbbell: some View { Image(systemName: glyph) .rotationEffect(.degrees(-35)) + .widgetAccentable() } var body: some View {