Fixes #2237 accent colours on web feeds.
This commit is contained in:
Stuart Breckenridge 2020-07-12 00:07:37 +08:00
parent 5138d7d2e0
commit 61c42171c7
No known key found for this signature in database
GPG Key ID: 79BD673276AE83CE
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ struct AddWebFeedView: View {
HStack(alignment: .top) {
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
Image(rsImage: image)
.foregroundColor(.accentColor)
.foregroundColor(Color("AccentColor"))
}
Text("\(containerName)")
.tag(index)
@ -144,7 +144,7 @@ struct AddWebFeedView: View {
HStack(alignment: .top) {
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
Image(rsImage: image)
.foregroundColor(.accentColor)
.foregroundColor(Color("AccentColor"))
}
Text(containerName)
.tag(index)