diff --git a/UIColor+Rainbow.swift b/UIColor+Rainbow.swift index 224438c..474cfda 100644 --- a/UIColor+Rainbow.swift +++ b/UIColor+Rainbow.swift @@ -7869,18 +7869,6 @@ extension UIColor { return UIColor.init ( red: 255.0/255.0, green: 189.0/255.0, blue: 136.0/255.0, alpha: alpha ) } - /** - Returns a color object representing the color Magenta, whose RBG values are (255, 0, 255), and has the specified opacity. - - :param: alpha A CGFloat between 0.0 and 1.0 representing the opacity with a default value of 1.0. - - :returns: The UIColor object - */ - - class func magentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } - - /** Returns a color object representing the color Magenta (Crayola), whose RBG values are (246, 100, 175), and has the specified opacity. diff --git a/UIColor+RainbowLight.swift b/UIColor+RainbowLight.swift index fe4c538..ddf57a0 100644 --- a/UIColor+RainbowLight.swift +++ b/UIColor+RainbowLight.swift @@ -789,18 +789,6 @@ extension UIColor { return UIColor.init ( red: 250.0/255.0, green: 240.0/255.0, blue: 230.0/255.0, alpha: alpha ) } - /** - Returns a color object representing the color Magenta, whose RBG values are (255, 0, 255), and has the specified opacity. - - :param: alpha A CGFloat between 0.0 and 1.0 representing the opacity with a default value of 1.0. - - :returns: The UIColor object - */ - - class func magentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } - - /** Returns a color object representing the color Mahogany, whose RBG values are (192, 64, 0), and has the specified opacity. diff --git a/UIColor+RainbowX11.swift b/UIColor+RainbowX11.swift index 40c54b5..67cd14b 100644 --- a/UIColor+RainbowX11.swift +++ b/UIColor+RainbowX11.swift @@ -921,18 +921,6 @@ extension UIColor { return UIColor.init ( red: 250.0/255.0, green: 240.0/255.0, blue: 230.0/255.0, alpha: alpha ) } - /** - Returns a color object representing the color Magenta, whose RBG values are (255, 0, 255), and has the specified opacity. - - :param: alpha A CGFloat between 0.0 and 1.0 representing the opacity with a default value of 1.0. - - :returns: The UIColor object - */ - - class func magentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } - - /** Returns a color object representing the color Maroon (X11), whose RBG values are (176, 48, 96), and has the specified opacity.