diff --git a/bwi/NotificationTimes/NotificationTimesView.swift b/bwi/NotificationTimes/NotificationTimesView.swift index 834353bf4..2f1e4d977 100644 --- a/bwi/NotificationTimes/NotificationTimesView.swift +++ b/bwi/NotificationTimes/NotificationTimesView.swift @@ -162,10 +162,16 @@ fileprivate struct WeekDayButton: View { .strokeBorder(Color.secondary, lineWidth: 1) .background(Circle().fill(.clear)) } - - Text(weekday.shortName) - .font(.subheadline) - .foregroundColor(.primary) + + if weekday.isEnabled { + Text(weekday.shortName) + .font(.subheadline) + .foregroundColor(Color(ThemeService.shared().theme.backgroundColor)) + } else { + Text(weekday.shortName) + .font(.subheadline) + .foregroundColor(Color(ThemeService.shared().theme.tintColor)) + } } .frame(width: 38, height: 38)