reskin: rename ColorValues to Theme

This commit is contained in:
manuroe
2019-01-10 15:32:59 +01:00
parent 6d69bfa167
commit 2b32e32ac4
79 changed files with 210 additions and 210 deletions
@@ -415,10 +415,10 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
NSString *roomCount = [NSString stringWithFormat:@" %tu", count];
NSMutableAttributedString *mutableSectionTitle = [[NSMutableAttributedString alloc] initWithString:title
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.colorValues.headerTextPrimaryColor,
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.theme.headerTextPrimaryColor,
NSFontAttributeName: [UIFont boldSystemFontOfSize:15.0]}];
[mutableSectionTitle appendAttributedString:[[NSMutableAttributedString alloc] initWithString:roomCount
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.colorValues.headerTextSecondaryColor,
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.theme.headerTextSecondaryColor,
NSFontAttributeName: [UIFont boldSystemFontOfSize:15.0]}]];
sectionTitle = mutableSectionTitle;
@@ -426,7 +426,7 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
else if (title)
{
sectionTitle = [[NSAttributedString alloc] initWithString:title
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.colorValues.headerTextPrimaryColor,
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.theme.headerTextPrimaryColor,
NSFontAttributeName: [UIFont boldSystemFontOfSize:15.0]}];
}