Index: ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm |
diff --git a/ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm b/ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm |
index 7f46296203fedd2c4cb2bd72b7e560c066b8b6c7..6cc4d39737d4c166a7cb3d65a7b900fc6ff027f2 100644 |
--- a/ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm |
+++ b/ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm |
@@ -243,6 +243,7 @@ typedef NS_ENUM(NSInteger, ItemType) { |
[[CollectionViewTextItem alloc] initWithType:ItemTypeHeader] autorelease]; |
header.text = l10n_util::GetNSString(IDS_IOS_OPTIONS_ACCOUNTS_DESCRIPTION); |
header.accessibilityIdentifier = kSettingsHeaderId; |
+ header.textColor = [[MDCPalette greyPalette] tint500]; |
return header; |
} |
@@ -370,22 +371,6 @@ typedef NS_ENUM(NSInteger, ItemType) { |
} |
} |
-#pragma mark - UICollectionViewDataSource |
- |
-- (UICollectionReusableView*)collectionView:(UICollectionView*)collectionView |
- viewForSupplementaryElementOfKind:(NSString*)kind |
- atIndexPath:(NSIndexPath*)indexPath { |
- UICollectionReusableView* view = [super collectionView:collectionView |
- viewForSupplementaryElementOfKind:kind |
- atIndexPath:indexPath]; |
- MDCCollectionViewTextCell* textCell = |
- base::mac::ObjCCast<MDCCollectionViewTextCell>(view); |
- if (textCell) { |
- textCell.textLabel.textColor = [[MDCPalette greyPalette] tint500]; |
- } |
- return view; |
-} |
- |
#pragma mark - MDCCollectionViewStylingDelegate |
- (CGFloat)collectionView:(UICollectionView*)collectionView |