reskin: Rename RiotDesignValues -> ThemeService

This commit is contained in:
manuroe
2019-01-11 10:32:56 +01:00
parent eef759a8fa
commit 712a632120
123 changed files with 992 additions and 1004 deletions
+7 -7
View File
@@ -17,7 +17,7 @@
#import "DeviceView.h"
#import "RiotDesignValues.h"
#import "ThemeService.h"
#import "Riot-Swift.h"
@implementation DeviceView
@@ -28,12 +28,12 @@
{
[super customizeViewRendering];
self.containerView.backgroundColor = RiotDesignValues.theme.headerBackgroundColor;
self.textView.backgroundColor = RiotDesignValues.theme.backgroundColor;
self.defaultTextColor = RiotDesignValues.theme.textPrimaryColor;
self.cancelButton.tintColor = RiotDesignValues.theme.tintColor;
self.deleteButton.tintColor = RiotDesignValues.theme.tintColor;
self.renameButton.tintColor = RiotDesignValues.theme.tintColor;
self.containerView.backgroundColor = ThemeService.theme.headerBackgroundColor;
self.textView.backgroundColor = ThemeService.theme.backgroundColor;
self.defaultTextColor = ThemeService.theme.textPrimaryColor;
self.cancelButton.tintColor = ThemeService.theme.tintColor;
self.deleteButton.tintColor = ThemeService.theme.tintColor;
self.renameButton.tintColor = ThemeService.theme.tintColor;
}
@end