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 {