diff --git a/iOS/Settings/General/SettingsRows.swift b/iOS/Settings/General/SettingsRows.swift index 92d78b572..33b8c87e1 100644 --- a/iOS/Settings/General/SettingsRows.swift +++ b/iOS/Settings/General/SettingsRows.swift @@ -213,7 +213,8 @@ struct SettingsViewRows { Image(systemName: sheet.systemImage) .resizable() .renderingMode(.template) - .foregroundColor(Color(uiColor: .tertiaryLabel)) + .symbolRenderingMode(.hierarchical) + .foregroundColor(Color(uiColor: AppAssets.primaryAccentColor)) .aspectRatio(contentMode: .fit) .frame(width: 30.0, height: 30.0) } @@ -230,10 +231,11 @@ struct SettingsViewRows { Label { Text("About", comment: "Button: opens the NetNewsWire about view.") } icon: { - Image(systemName: "info.circle") + Image(systemName: "info.circle.fill") .resizable() .renderingMode(.template) - .foregroundColor(Color(uiColor: .tertiaryLabel)) + .symbolRenderingMode(.hierarchical) + .foregroundColor(Color(uiColor: AppAssets.primaryAccentColor)) .aspectRatio(contentMode: .fit) .frame(width: 30.0, height: 30.0) } diff --git a/iOS/Settings/Help/SettingsHelpSheets.swift b/iOS/Settings/Help/SettingsHelpSheets.swift index e1b067736..3f6468d57 100644 --- a/iOS/Settings/Help/SettingsHelpSheets.swift +++ b/iOS/Settings/Help/SettingsHelpSheets.swift @@ -34,9 +34,9 @@ public enum HelpSheet: CustomStringConvertible, CaseIterable { public var systemImage: String { switch self { case .help: - return "questionmark.app" + return "questionmark.circle.fill" case .website: - return "globe" + return "safari.fill" } } }