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