Reskin: Kill kRiotColorGreen and use RiotDesignValues.colorValues.accent instead

This commit is contained in:
manuroe
2018-11-30 17:10:28 +01:00
parent 9fea29617e
commit a28271afcb
62 changed files with 170 additions and 111 deletions
+4 -3
View File
@@ -18,6 +18,7 @@
#import "DeviceView.h"
#import "RiotDesignValues.h"
#import "Riot-Swift.h"
@implementation DeviceView
@@ -30,9 +31,9 @@
self.containerView.backgroundColor = kRiotSecondaryBgColor;
self.textView.backgroundColor = kRiotPrimaryBgColor;
self.defaultTextColor = kRiotPrimaryTextColor;
self.cancelButton.tintColor = kRiotColorGreen;
self.deleteButton.tintColor = kRiotColorGreen;
self.renameButton.tintColor = kRiotColorGreen;
self.cancelButton.tintColor = RiotDesignValues.colorValues.accent;
self.deleteButton.tintColor = RiotDesignValues.colorValues.accent;
self.renameButton.tintColor = RiotDesignValues.colorValues.accent;
}
@end