From 34a957b28e6e449c38a63d79384283dd3759e971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toni=20F=C3=B6rster?= Date: Wed, 11 Sep 2024 08:55:18 +0200 Subject: [PATCH] use system background color for background MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Toni Förster --- Shared/Search/SearchTextField.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Search/SearchTextField.swift b/Shared/Search/SearchTextField.swift index 9005a7d7..0b40cdec 100644 --- a/Shared/Search/SearchTextField.swift +++ b/Shared/Search/SearchTextField.swift @@ -76,7 +76,7 @@ struct SearchTextField: View { ) .overlay( RoundedRectangle(cornerRadius: 8) - .stroke(Color("ControlsBorderColor"), lineWidth: 1) + .stroke(Color(UIColor.secondarySystemBackground), lineWidth: 1) ) .frame(maxWidth: .infinity, alignment: .leading) }