From 61c42171c769f1a168c8352b8ad51b5f46aba2f6 Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Sun, 12 Jul 2020 00:07:37 +0800 Subject: [PATCH] 2237 Fixes #2237 accent colours on web feeds. --- Multiplatform/Shared/Add/AddWebFeedView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Multiplatform/Shared/Add/AddWebFeedView.swift b/Multiplatform/Shared/Add/AddWebFeedView.swift index 2056baf9e..7c8f1615a 100644 --- a/Multiplatform/Shared/Add/AddWebFeedView.swift +++ b/Multiplatform/Shared/Add/AddWebFeedView.swift @@ -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)