diff --git a/Sora/Views/SettingsView/SettingsSubViews/SettingsViewAbout.swift b/Sora/Views/SettingsView/SettingsSubViews/SettingsViewAbout.swift index dc5de32..966e8ec 100644 --- a/Sora/Views/SettingsView/SettingsSubViews/SettingsViewAbout.swift +++ b/Sora/Views/SettingsView/SettingsSubViews/SettingsViewAbout.swift @@ -215,8 +215,12 @@ struct ContributorView: View { Text(contributor.login) .font(.headline) - .foregroundColor(contributor.login == "IBH-RAD" ? Color(hexTwo: "#41127b") : .accentColor) - + .foregroundColor( + contributor.login == "IBH-RAD" ? Color(hexTwo: "#41127b") : + contributor.login == "50n50" ? Color(hexTwo: "#fa4860") : + .accentColor + ) + Spacer() Image(systemName: "safari") .foregroundColor(.accentColor)