From 3ee53e8c2bff171dd59cb04b3cd25ebfa570356d Mon Sep 17 00:00:00 2001 From: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> Date: Mon, 29 May 2023 20:33:30 -0700 Subject: [PATCH] fix(SwiftUI): improve chevronRight colors for credit links --- AltStore/SwiftUI/Views/Settings/SettingsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AltStore/SwiftUI/Views/Settings/SettingsView.swift b/AltStore/SwiftUI/Views/Settings/SettingsView.swift index 530ab99e..60342d11 100644 --- a/AltStore/SwiftUI/Views/Settings/SettingsView.swift +++ b/AltStore/SwiftUI/Views/Settings/SettingsView.swift @@ -131,7 +131,7 @@ struct SettingsView: View { Spacer() Text("SideStore Team") Image(systemSymbol: .chevronRight) - .foregroundColor(.secondary) + .foregroundColor(.secondary.opacity(0.5)) } } .foregroundColor(.primary) @@ -145,7 +145,7 @@ struct SettingsView: View { Spacer() Text("fabianthdev") Image(systemSymbol: .chevronRight) - .foregroundColor(.secondary) + .foregroundColor(.secondary.opacity(0.5)) } } .foregroundColor(.primary)