public static UIColor Lighter(this UIColor self, float percentage) { return(self.Adjust(Math.Abs(percentage))); }
public static UIColor Darken(this UIColor self, float percentage) { return(self.Adjust(-1 * Math.Abs(percentage))); }