From ce63f6a96b44211585b2098173697d165d3665b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=E2=80=99Aquino?= Date: Mon, 16 Sep 2024 11:03:34 -0700 Subject: [PATCH] Make friends filter button more visible MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit changes the appearance of the friends filter button to make it more visible Testing: - Checked appearance in both light mode and dark mode - Checked appearance in all usages (notifications view and DM view) - Checked consistency against the filter button in Universe view Changelog-Changed: Improve visibility of friends filter button Signed-off-by: Daniel D’Aquino --- damus/Views/Buttons/FriendsButton.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/Buttons/FriendsButton.swift b/damus/Views/Buttons/FriendsButton.swift index b69a313d..4d44695a 100644 --- a/damus/Views/Buttons/FriendsButton.swift +++ b/damus/Views/Buttons/FriendsButton.swift @@ -28,7 +28,7 @@ struct FriendsButton: View { Image("user-added") .resizable() .frame(width: 28, height: 28) - .foregroundColor(DamusColors.adaptableGrey) + .foregroundColor(.gray) } } .buttonStyle(.plain)