From ff29f2768bf483ace073d200375c5bf6f8fa52d9 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sat, 28 Jan 2023 18:18:53 -0500 Subject: [PATCH] Tweak follow count button colors Try to make it clearer that it's a button --- Tusker/Views/Profile Header/ProfileHeaderView.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/Tusker/Views/Profile Header/ProfileHeaderView.swift b/Tusker/Views/Profile Header/ProfileHeaderView.swift index 172886f7..00ac35ed 100644 --- a/Tusker/Views/Profile Header/ProfileHeaderView.swift +++ b/Tusker/Views/Profile Header/ProfileHeaderView.swift @@ -154,14 +154,12 @@ class ProfileHeaderView: UIView { let followCountTitle = NSMutableAttributedString() followCountTitle.append(NSAttributedString(string: followingAbbr, attributes: [ .font: UIFont.preferredFont(forTextStyle: .body).withTraits(.traitBold)!, - .foregroundColor: UIColor.label, ])) followCountTitle.append(NSAttributedString(string: " Following, ", attributes: [ .foregroundColor: UIColor.secondaryLabel, ])) followCountTitle.append(NSAttributedString(string: followersAbbr, attributes: [ .font: UIFont.preferredFont(forTextStyle: .body).withTraits(.traitBold)!, - .foregroundColor: UIColor.label, ])) followCountTitle.append(NSAttributedString(string: " Follower\(account.followersCount == 1 ? "" : "s")", attributes: [ .foregroundColor: UIColor.secondaryLabel,