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
@@ -18,6 +18,7 @@
#import "EncryptionInfoView.h"
#import "RiotDesignValues.h"
#import "Riot-Swift.h"
@implementation EncryptionInfoView
@@ -30,10 +31,10 @@
self.backgroundColor = kRiotSecondaryBgColor;
self.textView.backgroundColor = kRiotPrimaryBgColor;
self.defaultTextColor = kRiotPrimaryTextColor;
self.cancelButton.tintColor = kRiotColorGreen;
self.verifyButton.tintColor = kRiotColorGreen;
self.blockButton.tintColor = kRiotColorGreen;
self.confirmVerifyButton.tintColor = kRiotColorGreen;
self.cancelButton.tintColor = RiotDesignValues.colorValues.accent;
self.verifyButton.tintColor = RiotDesignValues.colorValues.accent;
self.blockButton.tintColor = RiotDesignValues.colorValues.accent;
self.confirmVerifyButton.tintColor = RiotDesignValues.colorValues.accent;
}
@end