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

View File

@@ -17,6 +17,7 @@
#import "BugReportViewController.h"
#import "AppDelegate.h"
#import "Riot-Swift.h"
#import "GBDeviceInfo_iOS.h"
@@ -153,13 +154,13 @@
self.sendingLabel.textColor = kRiotPrimaryTextColor;
self.descriptionLabel.textColor = kRiotPrimaryTextColor;
self.bugReportDescriptionTextView.textColor = kRiotPrimaryTextColor;
self.bugReportDescriptionTextView.tintColor = kRiotColorGreen;
self.bugReportDescriptionTextView.tintColor = RiotDesignValues.colorValues.accent;
self.logsDescriptionLabel.textColor = kRiotPrimaryTextColor;
self.sendLogsLabel.textColor = kRiotPrimaryTextColor;
self.sendScreenshotLabel.textColor = kRiotPrimaryTextColor;
self.sendButton.tintColor = kRiotColorGreen;
self.cancelButton.tintColor = kRiotColorGreen;
self.sendButton.tintColor = RiotDesignValues.colorValues.accent;
self.cancelButton.tintColor = RiotDesignValues.colorValues.accent;
_bugReportDescriptionTextView.layer.borderColor = kRiotSecondaryBgColor.CGColor;
}