From c9c60349df600ad23a8c0c287e05317f6b94e085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toni=20F=C3=B6rster?= Date: Tue, 27 Aug 2024 22:02:00 +0200 Subject: [PATCH] Color changes to VideoActions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Toni Förster --- Shared/Player/Video Details/VideoActions.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shared/Player/Video Details/VideoActions.swift b/Shared/Player/Video Details/VideoActions.swift index 27f64df7..f269300a 100644 --- a/Shared/Player/Video Details/VideoActions.swift +++ b/Shared/Player/Video Details/VideoActions.swift @@ -198,10 +198,10 @@ struct VideoActions: View { VStack(spacing: 3) { Image(systemName: systemImage) .frame(width: 20, height: 20) - .foregroundColor(active ? Color("AppRedColor") : .accentColor) + .foregroundColor(active ? Color("AppRedColor") : .primary) if playerActionsButtonLabelStyle.text { Text(name.localized()) - .foregroundColor(active ? Color("AppRedColor") : .secondary) + .foregroundColor(active ? Color("AppRedColor") : .primary) .font(.caption2) .allowsTightening(true) .lineLimit(1)