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

This commit is contained in:
manuroe
2018-11-30 17:10:28 +01:00
parent 58b1ff9381
commit 674fcfaa9d
62 changed files with 170 additions and 111 deletions
@@ -17,6 +17,7 @@
#import "EventDetailsView.h"
#import "RiotDesignValues.h"
#import "Riot-Swift.h"
@implementation EventDetailsView
@@ -27,8 +28,8 @@
self.backgroundColor = kRiotSecondaryBgColor;
self.textView.backgroundColor = kRiotPrimaryBgColor;
self.textView.textColor = kRiotPrimaryTextColor;
self.redactButton.tintColor = kRiotColorGreen;
self.closeButton.tintColor = kRiotColorGreen;
self.redactButton.tintColor = RiotDesignValues.colorValues.accent;
self.closeButton.tintColor = RiotDesignValues.colorValues.accent;
}
@end