From aaa5ecaad7d1b47190f98cbeef8d1b84f8c7fa3c Mon Sep 17 00:00:00 2001 From: Reid Gravelle Date: Sun, 12 Apr 2015 16:20:20 -0400 Subject: [PATCH] Added the Google Design Colours. --- Readme.md | 2 + UIColor+Rainbow.swift | 6122 +++++++++++++++++++++-------- UIColor+RainbowGoogleDesign.swift | 3079 +++++++++++++++ 3 files changed, 7666 insertions(+), 1537 deletions(-) create mode 100644 UIColor+RainbowGoogleDesign.swift diff --git a/Readme.md b/Readme.md index d2b4b58..530f4b8 100644 --- a/Readme.md +++ b/Readme.md @@ -19,6 +19,7 @@ To use the library download the file you want and import it into your project. * __UIColor+Rainbow.swift__ - The complete palette of colours. If you import this one into your project don't use any others. * __UIColor+RainbowCrayons.swift__ - A subset that only includes colours that are or have been Crayola colours. +* __UIColor+RainbowGoogleDesign.swift__ - A subset that contains the colours from the Google design guidelines. (Also known as their Material UI Colors.) * __UIColor+RainbowLight.swift__ - A subset that contains the more common colours. Please let me know if you think a colour should be in here. This palette is one that I am choosing the colours for on my own. * __UIColor+RainbowX11.swift__ - A palette that contains a subset which are the defined X11 colours. They are also known as the web colours because all of the browsers define them along with the 16 colours defined in the HTML spec. I've created this subset because I figured that it's probably a nice light-weight and balanced palette to make available. @@ -52,6 +53,7 @@ In the meantime you can view the colours at Wikipedia where I got the data for a * [List of Colors: N-Z](https://en.wikipedia.org/wiki/List_of_colors:_N–Z) * [List of Crayola Crayon Colors](https://en.wikipedia.org/wiki/List_of_Crayola_crayon_colors) * [X11 Color Names](https://en.wikipedia.org/wiki/X11_color_names) +* [Color - Style - Google Design Guidelines](http://www.google.com/design/spec/style/color.html#) I also want to get the library so that it can be used with Mac applications. Right now it is only useful for iOS apps. Since I haven't built any apps for the Mac I don't know what needs to be done for the conversion. Any assistance would be appreciated. diff --git a/UIColor+Rainbow.swift b/UIColor+Rainbow.swift index 8cf9cac..40731da 100644 --- a/UIColor+Rainbow.swift +++ b/UIColor+Rainbow.swift @@ -267,6 +267,174 @@ extension UIColor { return UIColor.init ( red: 255.0/255.0, green: 126.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + /** + Returns a UIColor object representing the color Amber 100, whose RBG values are (255, 236, 179), 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 amber100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 236.0/255.0, blue: 179.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 200, whose RBG values are (255, 224, 130), 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 amber200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 224.0/255.0, blue: 130.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 300, whose RBG values are (255, 213, 79), 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 amber300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 213.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 400, whose RBG values are (255, 202, 40), 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 amber400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 202.0/255.0, blue: 40.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 50, whose RBG values are (255, 248, 225), 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 amber50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 248.0/255.0, blue: 225.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 500, whose RBG values are (255, 193, 7), 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 amber500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 193.0/255.0, blue: 7.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 600, whose RBG values are (255, 179, 0), 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 amber600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 179.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 700, whose RBG values are (255, 160, 0), 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 amber700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 160.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 800, whose RBG values are (255, 143, 0), 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 amber800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 143.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 900, whose RBG values are (255, 111, 0), 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 amber900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 111.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber A100, whose RBG values are (255, 229, 127), 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 amberA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 229.0/255.0, blue: 127.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber A200, whose RBG values are (255, 215, 64), 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 amberA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 215.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber A400, whose RBG values are (255, 196, 0), 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 amberA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 196.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber A700, whose RBG values are (255, 171, 0), 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 amberA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 171.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + /** Returns a UIColor object representing the color American Rose, whose RBG values are (255, 3, 62), and has the specified opacity. @@ -1144,6123 +1312,7827 @@ extension UIColor { /** - Returns a UIColor object representing the color Blue Bell (Crayola), whose RBG values are (162, 162, 208), and has the specified opacity. + Returns a UIColor object representing the color Blue 100, whose RBG values are (187, 222, 251), 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 blueBellCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 162.0/255.0, green: 162.0/255.0, blue: 208.0/255.0, alpha: alpha ) } + class func blue100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 187.0/255.0, green: 222.0/255.0, blue: 251.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blue Green (Crayola), whose RBG values are (13, 152, 186), and has the specified opacity. + Returns a UIColor object representing the color Blue 200, whose RBG values are (144, 202, 249), 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 blueGreenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 13.0/255.0, green: 152.0/255.0, blue: 186.0/255.0, alpha: alpha ) } + class func blue200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 144.0/255.0, green: 202.0/255.0, blue: 249.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blue Lagoon, whose RBG values are (94, 147, 161), and has the specified opacity. + Returns a UIColor object representing the color Blue 300, whose RBG values are (100, 181, 246), 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 blueLagoonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 94.0/255.0, green: 147.0/255.0, blue: 161.0/255.0, alpha: alpha ) } + class func blue300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 100.0/255.0, green: 181.0/255.0, blue: 246.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blue Violet (Crayola), whose RBG values are (115, 102, 189), and has the specified opacity. + Returns a UIColor object representing the color Blue 400, whose RBG values are (66, 165, 245), 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 blueVioletCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 115.0/255.0, green: 102.0/255.0, blue: 189.0/255.0, alpha: alpha ) } + class func blue400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 66.0/255.0, green: 165.0/255.0, blue: 245.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blue Sapphire, whose RBG values are (18, 97, 128), and has the specified opacity. + Returns a UIColor object representing the color Blue 50, whose RBG values are (227, 242, 253), 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 blueSapphireColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 18.0/255.0, green: 97.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + class func blue50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 227.0/255.0, green: 242.0/255.0, blue: 253.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blue Yonder, whose RBG values are (80, 114, 167), and has the specified opacity. + Returns a UIColor object representing the color Blue 500, whose RBG values are (33, 150, 243), 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 blueYonderColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 80.0/255.0, green: 114.0/255.0, blue: 167.0/255.0, alpha: alpha ) } + class func blue500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 33.0/255.0, green: 150.0/255.0, blue: 243.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blue-Gray, whose RBG values are (102, 153, 204), and has the specified opacity. + Returns a UIColor object representing the color Blue 600, whose RBG values are (30, 136, 229), 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 blueGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 102.0/255.0, green: 153.0/255.0, blue: 204.0/255.0, alpha: alpha ) } + class func blue600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 30.0/255.0, green: 136.0/255.0, blue: 229.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blue-Magenta Violet, whose RBG values are (85, 53, 146), and has the specified opacity. + Returns a UIColor object representing the color Blue 700, whose RBG values are (25, 118, 210), 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 blueMagentaVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 85.0/255.0, green: 53.0/255.0, blue: 146.0/255.0, alpha: alpha ) } + class func blue700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 25.0/255.0, green: 118.0/255.0, blue: 210.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blue-Violet, whose RBG values are (138, 43, 226), and has the specified opacity. + Returns a UIColor object representing the color Blue 800, whose RBG values are (21, 101, 192), 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 blueVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 138.0/255.0, green: 43.0/255.0, blue: 226.0/255.0, alpha: alpha ) } + class func blue800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 21.0/255.0, green: 101.0/255.0, blue: 192.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blueberry, whose RBG values are (79, 134, 247), and has the specified opacity. + Returns a UIColor object representing the color Blue 900, whose RBG values are (13, 71, 161), 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 blueberryColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 79.0/255.0, green: 134.0/255.0, blue: 247.0/255.0, alpha: alpha ) } + class func blue900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 13.0/255.0, green: 71.0/255.0, blue: 161.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bluebonnet, whose RBG values are (28, 28, 240), and has the specified opacity. + Returns a UIColor object representing the color Blue A100, whose RBG values are (130, 177, 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 bluebonnetColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 28.0/255.0, green: 28.0/255.0, blue: 240.0/255.0, alpha: alpha ) } + class func blueA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 130.0/255.0, green: 177.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Blush (Crayola), whose RBG values are (222, 93, 131), and has the specified opacity. + Returns a UIColor object representing the color Blue A200, whose RBG values are (68, 138, 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 blushCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 222.0/255.0, green: 93.0/255.0, blue: 131.0/255.0, alpha: alpha ) } + class func blueA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 68.0/255.0, green: 138.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bole, whose RBG values are (121, 68, 59), and has the specified opacity. + Returns a UIColor object representing the color Blue A400, whose RBG values are (41, 121, 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 boleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 121.0/255.0, green: 68.0/255.0, blue: 59.0/255.0, alpha: alpha ) } + class func blueA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 41.0/255.0, green: 121.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bondi Blue, whose RBG values are (0, 149, 182), and has the specified opacity. + Returns a UIColor object representing the color Blue A700, whose RBG values are (41, 98, 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 bondiBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 149.0/255.0, blue: 182.0/255.0, alpha: alpha ) } + class func blueA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 41.0/255.0, green: 98.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bone, whose RBG values are (227, 218, 201), and has the specified opacity. + Returns a UIColor object representing the color Blue Bell (Crayola), whose RBG values are (162, 162, 208), 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 boneColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 227.0/255.0, green: 218.0/255.0, blue: 201.0/255.0, alpha: alpha ) } + class func blueBellCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 162.0/255.0, green: 162.0/255.0, blue: 208.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Boston University Red, whose RBG values are (204, 0, 0), and has the specified opacity. + Returns a UIColor object representing the color Blue Green (Crayola), whose RBG values are (13, 152, 186), 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 bostonUniversityRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func blueGreenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 13.0/255.0, green: 152.0/255.0, blue: 186.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bottle Green, whose RBG values are (0, 106, 78), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 100, whose RBG values are (207, 216, 220), 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 bottleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 106.0/255.0, blue: 78.0/255.0, alpha: alpha ) } + class func blueGrey100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 207.0/255.0, green: 216.0/255.0, blue: 220.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Boysenberry, whose RBG values are (135, 50, 96), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 200, whose RBG values are (176, 190, 197), 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 boysenberryColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 135.0/255.0, green: 50.0/255.0, blue: 96.0/255.0, alpha: alpha ) } + class func blueGrey200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 176.0/255.0, green: 190.0/255.0, blue: 197.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brandeis Blue, whose RBG values are (0, 112, 255), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 300, whose RBG values are (144, 164, 174), 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 brandeisBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 112.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func blueGrey300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 144.0/255.0, green: 164.0/255.0, blue: 174.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brass, whose RBG values are (181, 166, 66), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 400, whose RBG values are (120, 144, 156), 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 brassColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 181.0/255.0, green: 166.0/255.0, blue: 66.0/255.0, alpha: alpha ) } + class func blueGrey400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 120.0/255.0, green: 144.0/255.0, blue: 156.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brick Red (Crayola), whose RBG values are (203, 65, 84), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 50, whose RBG values are (236, 239, 241), 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 brickRedCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 203.0/255.0, green: 65.0/255.0, blue: 84.0/255.0, alpha: alpha ) } + class func blueGrey50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 236.0/255.0, green: 239.0/255.0, blue: 241.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bright Cerulean, whose RBG values are (29, 172, 214), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 500, whose RBG values are (96, 125, 139), 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 brightCeruleanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 29.0/255.0, green: 172.0/255.0, blue: 214.0/255.0, alpha: alpha ) } + class func blueGrey500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 96.0/255.0, green: 125.0/255.0, blue: 139.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bright Green, whose RBG values are (102, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 600, whose RBG values are (84, 110, 122), 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 brightGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 102.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func blueGrey600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 84.0/255.0, green: 110.0/255.0, blue: 122.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bright Lavender, whose RBG values are (191, 148, 228), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 700, whose RBG values are (69, 90, 100), 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 brightLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 191.0/255.0, green: 148.0/255.0, blue: 228.0/255.0, alpha: alpha ) } + class func blueGrey700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 69.0/255.0, green: 90.0/255.0, blue: 100.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bright Lilac, whose RBG values are (216, 145, 239), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 800, whose RBG values are (55, 71, 79), 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 brightLilacColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 216.0/255.0, green: 145.0/255.0, blue: 239.0/255.0, alpha: alpha ) } + class func blueGrey800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 55.0/255.0, green: 71.0/255.0, blue: 79.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bright Maroon, whose RBG values are (195, 33, 72), and has the specified opacity. + Returns a UIColor object representing the color Blue Grey 900, whose RBG values are (38, 50, 56), 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 brightMaroonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 195.0/255.0, green: 33.0/255.0, blue: 72.0/255.0, alpha: alpha ) } + class func blueGrey900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 38.0/255.0, green: 50.0/255.0, blue: 56.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bright Navy Blue, whose RBG values are (25, 116, 210), and has the specified opacity. + Returns a UIColor object representing the color Blue Lagoon, whose RBG values are (94, 147, 161), 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 brightNavyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 25.0/255.0, green: 116.0/255.0, blue: 210.0/255.0, alpha: alpha ) } + class func blueLagoonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 94.0/255.0, green: 147.0/255.0, blue: 161.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bright Pink, whose RBG values are (255, 0, 127), and has the specified opacity. + Returns a UIColor object representing the color Blue Violet (Crayola), whose RBG values are (115, 102, 189), 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 brightPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 127.0/255.0, alpha: alpha ) } + class func blueVioletCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 115.0/255.0, green: 102.0/255.0, blue: 189.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bright Turquoise, whose RBG values are (8, 232, 222), and has the specified opacity. + Returns a UIColor object representing the color Blue Sapphire, whose RBG values are (18, 97, 128), 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 brightTurquoiseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 8.0/255.0, green: 232.0/255.0, blue: 222.0/255.0, alpha: alpha ) } + class func blueSapphireColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 18.0/255.0, green: 97.0/255.0, blue: 128.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bright Ube, whose RBG values are (209, 159, 232), and has the specified opacity. + Returns a UIColor object representing the color Blue Yonder, whose RBG values are (80, 114, 167), 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 brightUbeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 209.0/255.0, green: 159.0/255.0, blue: 232.0/255.0, alpha: alpha ) } + class func blueYonderColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 80.0/255.0, green: 114.0/255.0, blue: 167.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brilliant Rose (Crayola), whose RBG values are (255, 85, 163), and has the specified opacity. + Returns a UIColor object representing the color Blue-Gray, whose RBG values are (102, 153, 204), 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 brilliantRoseCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 85.0/255.0, blue: 163.0/255.0, alpha: alpha ) } + class func blueGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 153.0/255.0, blue: 204.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brilliant Azure, whose RBG values are (51, 153, 255), and has the specified opacity. + Returns a UIColor object representing the color Blue-Magenta Violet, whose RBG values are (85, 53, 146), 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 brilliantAzureColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 51.0/255.0, green: 153.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func blueMagentaVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 85.0/255.0, green: 53.0/255.0, blue: 146.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brilliant Lavender, whose RBG values are (244, 187, 255), and has the specified opacity. + Returns a UIColor object representing the color Blue-Violet, whose RBG values are (138, 43, 226), 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 brilliantLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 244.0/255.0, green: 187.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func blueVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 138.0/255.0, green: 43.0/255.0, blue: 226.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brilliant Rose, whose RBG values are (246, 83, 166), and has the specified opacity. + Returns a UIColor object representing the color Blueberry, whose RBG values are (79, 134, 247), 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 brilliantRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 246.0/255.0, green: 83.0/255.0, blue: 166.0/255.0, alpha: alpha ) } + class func blueberryColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 79.0/255.0, green: 134.0/255.0, blue: 247.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brink Pink, whose RBG values are (251, 96, 127), and has the specified opacity. + Returns a UIColor object representing the color Bluebonnet, whose RBG values are (28, 28, 240), 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 brinkPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 251.0/255.0, green: 96.0/255.0, blue: 127.0/255.0, alpha: alpha ) } + class func bluebonnetColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 28.0/255.0, green: 28.0/255.0, blue: 240.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color British Racing Green, whose RBG values are (0, 66, 37), and has the specified opacity. + Returns a UIColor object representing the color Blush (Crayola), whose RBG values are (222, 93, 131), 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 britishRacingGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 66.0/255.0, blue: 37.0/255.0, alpha: alpha ) } + class func blushCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 222.0/255.0, green: 93.0/255.0, blue: 131.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bronze, whose RBG values are (205, 127, 50), and has the specified opacity. + Returns a UIColor object representing the color Bole, whose RBG values are (121, 68, 59), 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 bronzeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 205.0/255.0, green: 127.0/255.0, blue: 50.0/255.0, alpha: alpha ) } + class func boleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 121.0/255.0, green: 68.0/255.0, blue: 59.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bronze Yellow, whose RBG values are (115, 112, 0), and has the specified opacity. + Returns a UIColor object representing the color Bondi Blue, whose RBG values are (0, 149, 182), 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 bronzeYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 115.0/255.0, green: 112.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func bondiBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 149.0/255.0, blue: 182.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brown (Crayola), whose RBG values are (180, 103, 77), and has the specified opacity. + Returns a UIColor object representing the color Bone, whose RBG values are (227, 218, 201), 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 brownCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 180.0/255.0, green: 103.0/255.0, blue: 77.0/255.0, alpha: alpha ) } + class func boneColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 227.0/255.0, green: 218.0/255.0, blue: 201.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brown (Traditional), whose RBG values are (150, 75, 0), and has the specified opacity. + Returns a UIColor object representing the color Boston University Red, whose RBG values are (204, 0, 0), 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 brownTraditionalColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 150.0/255.0, green: 75.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func bostonUniversityRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brown (Web), whose RBG values are (165, 42, 42), and has the specified opacity. + Returns a UIColor object representing the color Bottle Green, whose RBG values are (0, 106, 78), 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 brownWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 165.0/255.0, green: 42.0/255.0, blue: 42.0/255.0, alpha: alpha ) } + class func bottleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 106.0/255.0, blue: 78.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brown Yellow, whose RBG values are (204, 153, 102), and has the specified opacity. + Returns a UIColor object representing the color Boysenberry, whose RBG values are (135, 50, 96), 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 brownYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 153.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + class func boysenberryColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 135.0/255.0, green: 50.0/255.0, blue: 96.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brown-Nose, whose RBG values are (107, 68, 35), and has the specified opacity. + Returns a UIColor object representing the color Brandeis Blue, whose RBG values are (0, 112, 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 brownNoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 107.0/255.0, green: 68.0/255.0, blue: 35.0/255.0, alpha: alpha ) } + class func brandeisBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 112.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Brunswick Green, whose RBG values are (27, 77, 62), and has the specified opacity. + Returns a UIColor object representing the color Brass, whose RBG values are (181, 166, 66), 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 brunswickGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 27.0/255.0, green: 77.0/255.0, blue: 62.0/255.0, alpha: alpha ) } + class func brassColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 181.0/255.0, green: 166.0/255.0, blue: 66.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bubble Gum, whose RBG values are (255, 193, 204), and has the specified opacity. + Returns a UIColor object representing the color Brick Red (Crayola), whose RBG values are (203, 65, 84), 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 bubbleGumColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 193.0/255.0, blue: 204.0/255.0, alpha: alpha ) } + class func brickRedCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 203.0/255.0, green: 65.0/255.0, blue: 84.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bubbles, whose RBG values are (231, 254, 255), and has the specified opacity. + Returns a UIColor object representing the color Bright Cerulean, whose RBG values are (29, 172, 214), 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 bubblesColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 231.0/255.0, green: 254.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func brightCeruleanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 29.0/255.0, green: 172.0/255.0, blue: 214.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bud Green, whose RBG values are (123, 182, 97), and has the specified opacity. + Returns a UIColor object representing the color Bright Green, whose RBG values are (102, 255, 0), 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 budGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 123.0/255.0, green: 182.0/255.0, blue: 97.0/255.0, alpha: alpha ) } + class func brightGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Buff, whose RBG values are (240, 220, 130), and has the specified opacity. + Returns a UIColor object representing the color Bright Lavender, whose RBG values are (191, 148, 228), 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 buffColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 240.0/255.0, green: 220.0/255.0, blue: 130.0/255.0, alpha: alpha ) } + class func brightLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 191.0/255.0, green: 148.0/255.0, blue: 228.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Bulgarian Rose, whose RBG values are (72, 6, 7), and has the specified opacity. + Returns a UIColor object representing the color Bright Lilac, whose RBG values are (216, 145, 239), 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 bulgarianRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 72.0/255.0, green: 6.0/255.0, blue: 7.0/255.0, alpha: alpha ) } + class func brightLilacColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 216.0/255.0, green: 145.0/255.0, blue: 239.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Burgundy, whose RBG values are (128, 0, 32), and has the specified opacity. + Returns a UIColor object representing the color Bright Maroon, whose RBG values are (195, 33, 72), 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 burgundyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 128.0/255.0, green: 0.0/255.0, blue: 32.0/255.0, alpha: alpha ) } + class func brightMaroonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 195.0/255.0, green: 33.0/255.0, blue: 72.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Burlywood, whose RBG values are (222, 184, 135), and has the specified opacity. + Returns a UIColor object representing the color Bright Navy Blue, whose RBG values are (25, 116, 210), 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 burlywoodColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 222.0/255.0, green: 184.0/255.0, blue: 135.0/255.0, alpha: alpha ) } + class func brightNavyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 25.0/255.0, green: 116.0/255.0, blue: 210.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Burnt Orange (Crayola), whose RBG values are (255, 127, 73), and has the specified opacity. + Returns a UIColor object representing the color Bright Pink, whose RBG values are (255, 0, 127), 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 burntOrangeCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 127.0/255.0, blue: 73.0/255.0, alpha: alpha ) } + class func brightPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 127.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Burnt Sienna (Crayola), whose RBG values are (234, 126, 93), and has the specified opacity. + Returns a UIColor object representing the color Bright Turquoise, whose RBG values are (8, 232, 222), 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 burntSiennaCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 234.0/255.0, green: 126.0/255.0, blue: 93.0/255.0, alpha: alpha ) } + class func brightTurquoiseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 8.0/255.0, green: 232.0/255.0, blue: 222.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Burnt Orange, whose RBG values are (204, 85, 0), and has the specified opacity. + Returns a UIColor object representing the color Bright Ube, whose RBG values are (209, 159, 232), 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 burntOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 85.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func brightUbeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 209.0/255.0, green: 159.0/255.0, blue: 232.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Burnt Sienna, whose RBG values are (233, 116, 81), and has the specified opacity. + Returns a UIColor object representing the color Brilliant Rose (Crayola), whose RBG values are (255, 85, 163), 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 burntSiennaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 233.0/255.0, green: 116.0/255.0, blue: 81.0/255.0, alpha: alpha ) } + class func brilliantRoseCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 85.0/255.0, blue: 163.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Burnt Umber, whose RBG values are (138, 51, 36), and has the specified opacity. + Returns a UIColor object representing the color Brilliant Azure, whose RBG values are (51, 153, 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 burntUmberColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 138.0/255.0, green: 51.0/255.0, blue: 36.0/255.0, alpha: alpha ) } + class func brilliantAzureColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 51.0/255.0, green: 153.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Byzantine, whose RBG values are (189, 51, 164), and has the specified opacity. + Returns a UIColor object representing the color Brilliant Lavender, whose RBG values are (244, 187, 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 byzantineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 189.0/255.0, green: 51.0/255.0, blue: 164.0/255.0, alpha: alpha ) } + class func brilliantLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 187.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Byzantium, whose RBG values are (112, 41, 99), and has the specified opacity. + Returns a UIColor object representing the color Brilliant Rose, whose RBG values are (246, 83, 166), 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 byzantiumColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 112.0/255.0, green: 41.0/255.0, blue: 99.0/255.0, alpha: alpha ) } + class func brilliantRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 246.0/255.0, green: 83.0/255.0, blue: 166.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color CG Blue, whose RBG values are (0, 122, 165), and has the specified opacity. + Returns a UIColor object representing the color Brink Pink, whose RBG values are (251, 96, 127), 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 cGBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 122.0/255.0, blue: 165.0/255.0, alpha: alpha ) } + class func brinkPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 96.0/255.0, blue: 127.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color CG Red, whose RBG values are (224, 60, 49), and has the specified opacity. + Returns a UIColor object representing the color British Racing Green, whose RBG values are (0, 66, 37), 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 cGRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 224.0/255.0, green: 60.0/255.0, blue: 49.0/255.0, alpha: alpha ) } + class func britishRacingGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 66.0/255.0, blue: 37.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cadet, whose RBG values are (83, 104, 114), and has the specified opacity. + Returns a UIColor object representing the color Bronze, whose RBG values are (205, 127, 50), 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 cadetColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 83.0/255.0, green: 104.0/255.0, blue: 114.0/255.0, alpha: alpha ) } + class func bronzeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 205.0/255.0, green: 127.0/255.0, blue: 50.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cadet Blue (Crayola), whose RBG values are (176, 183, 198), and has the specified opacity. + Returns a UIColor object representing the color Bronze Yellow, whose RBG values are (115, 112, 0), 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 cadetBlueCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 176.0/255.0, green: 183.0/255.0, blue: 198.0/255.0, alpha: alpha ) } + class func bronzeYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 115.0/255.0, green: 112.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cadet Blue, whose RBG values are (95, 158, 160), and has the specified opacity. + Returns a UIColor object representing the color Brown (Crayola), whose RBG values are (180, 103, 77), 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 cadetBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 95.0/255.0, green: 158.0/255.0, blue: 160.0/255.0, alpha: alpha ) } + class func brownCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 180.0/255.0, green: 103.0/255.0, blue: 77.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cadet Grey, whose RBG values are (145, 163, 176), and has the specified opacity. + Returns a UIColor object representing the color Brown (Traditional), whose RBG values are (150, 75, 0), 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 cadetGreyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 145.0/255.0, green: 163.0/255.0, blue: 176.0/255.0, alpha: alpha ) } + class func brownTraditionalColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 150.0/255.0, green: 75.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cadmium Green, whose RBG values are (0, 107, 60), and has the specified opacity. + Returns a UIColor object representing the color Brown (Web), whose RBG values are (165, 42, 42), 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 cadmiumGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 107.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + class func brownWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 165.0/255.0, green: 42.0/255.0, blue: 42.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cadmium Orange, whose RBG values are (237, 135, 45), and has the specified opacity. + Returns a UIColor object representing the color Brown 100, whose RBG values are (215, 204, 200), 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 cadmiumOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 237.0/255.0, green: 135.0/255.0, blue: 45.0/255.0, alpha: alpha ) } + class func brown100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 215.0/255.0, green: 204.0/255.0, blue: 200.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cadmium Red, whose RBG values are (227, 0, 34), and has the specified opacity. + Returns a UIColor object representing the color Brown 200, whose RBG values are (188, 170, 164), 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 cadmiumRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 227.0/255.0, green: 0.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + class func brown200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 188.0/255.0, green: 170.0/255.0, blue: 164.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cadmium Yellow, whose RBG values are (255, 246, 0), and has the specified opacity. + Returns a UIColor object representing the color Brown 300, whose RBG values are (161, 136, 127), 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 cadmiumYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 246.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func brown300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 161.0/255.0, green: 136.0/255.0, blue: 127.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Café Au Lait, whose RBG values are (166, 123, 91), and has the specified opacity. + Returns a UIColor object representing the color Brown 400, whose RBG values are (141, 110, 99), 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 caféAuLaitColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 166.0/255.0, green: 123.0/255.0, blue: 91.0/255.0, alpha: alpha ) } + class func brown400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 141.0/255.0, green: 110.0/255.0, blue: 99.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Café Noir, whose RBG values are (75, 54, 33), and has the specified opacity. + Returns a UIColor object representing the color Brown 50, whose RBG values are (239, 235, 233), 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 caféNoirColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 75.0/255.0, green: 54.0/255.0, blue: 33.0/255.0, alpha: alpha ) } + class func brown50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 235.0/255.0, blue: 233.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cal Poly Green, whose RBG values are (30, 77, 43), and has the specified opacity. + Returns a UIColor object representing the color Brown 500, whose RBG values are (121, 85, 72), 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 calPolyGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 30.0/255.0, green: 77.0/255.0, blue: 43.0/255.0, alpha: alpha ) } + class func brown500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 121.0/255.0, green: 85.0/255.0, blue: 72.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cambridge Blue, whose RBG values are (163, 193, 173), and has the specified opacity. + Returns a UIColor object representing the color Brown 600, whose RBG values are (109, 76, 65), 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 cambridgeBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 163.0/255.0, green: 193.0/255.0, blue: 173.0/255.0, alpha: alpha ) } + class func brown600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 109.0/255.0, green: 76.0/255.0, blue: 65.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Camel, whose RBG values are (193, 154, 107), and has the specified opacity. + Returns a UIColor object representing the color Brown 700, whose RBG values are (93, 64, 55), 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 camelColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 193.0/255.0, green: 154.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func brown700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 93.0/255.0, green: 64.0/255.0, blue: 55.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cameo Pink, whose RBG values are (239, 187, 204), and has the specified opacity. + Returns a UIColor object representing the color Brown 800, whose RBG values are (78, 52, 46), 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 cameoPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 239.0/255.0, green: 187.0/255.0, blue: 204.0/255.0, alpha: alpha ) } + class func brown800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 78.0/255.0, green: 52.0/255.0, blue: 46.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Camouflage Green, whose RBG values are (120, 134, 107), and has the specified opacity. + Returns a UIColor object representing the color Brown 900, whose RBG values are (62, 39, 35), 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 camouflageGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 120.0/255.0, green: 134.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func brown900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 62.0/255.0, green: 39.0/255.0, blue: 35.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Canary (Crayola), whose RBG values are (255, 255, 153), and has the specified opacity. + Returns a UIColor object representing the color Brown Yellow, whose RBG values are (204, 153, 102), 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 canaryCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 153.0/255.0, alpha: alpha ) } + class func brownYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 153.0/255.0, blue: 102.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Canary Yellow, whose RBG values are (255, 239, 0), and has the specified opacity. + Returns a UIColor object representing the color Brown-Nose, whose RBG values are (107, 68, 35), 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 canaryYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 239.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func brownNoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 107.0/255.0, green: 68.0/255.0, blue: 35.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Candy Apple Red, whose RBG values are (255, 8, 0), and has the specified opacity. + Returns a UIColor object representing the color Brunswick Green, whose RBG values are (27, 77, 62), 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 candyAppleRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 8.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func brunswickGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 27.0/255.0, green: 77.0/255.0, blue: 62.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Candy Pink, whose RBG values are (228, 113, 122), and has the specified opacity. + Returns a UIColor object representing the color Bubble Gum, whose RBG values are (255, 193, 204), 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 candyPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 228.0/255.0, green: 113.0/255.0, blue: 122.0/255.0, alpha: alpha ) } + class func bubbleGumColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 193.0/255.0, blue: 204.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Capri, whose RBG values are (0, 191, 255), and has the specified opacity. + Returns a UIColor object representing the color Bubbles, whose RBG values are (231, 254, 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 capriColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 191.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func bubblesColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 231.0/255.0, green: 254.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Caput Mortuum, whose RBG values are (89, 39, 32), and has the specified opacity. + Returns a UIColor object representing the color Bud Green, whose RBG values are (123, 182, 97), 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 caputMortuumColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 89.0/255.0, green: 39.0/255.0, blue: 32.0/255.0, alpha: alpha ) } + class func budGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 123.0/255.0, green: 182.0/255.0, blue: 97.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cardinal, whose RBG values are (196, 30, 58), and has the specified opacity. + Returns a UIColor object representing the color Buff, whose RBG values are (240, 220, 130), 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 cardinalColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 196.0/255.0, green: 30.0/255.0, blue: 58.0/255.0, alpha: alpha ) } + class func buffColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 220.0/255.0, blue: 130.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Caribbean Green (Crayola), whose RBG values are (0, 204, 153), and has the specified opacity. + Returns a UIColor object representing the color Bulgarian Rose, whose RBG values are (72, 6, 7), 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 caribbeanGreenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 204.0/255.0, blue: 153.0/255.0, alpha: alpha ) } + class func bulgarianRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 72.0/255.0, green: 6.0/255.0, blue: 7.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Carmine, whose RBG values are (150, 0, 24), and has the specified opacity. + Returns a UIColor object representing the color Burgundy, whose RBG values are (128, 0, 32), 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 carmineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 150.0/255.0, green: 0.0/255.0, blue: 24.0/255.0, alpha: alpha ) } + class func burgundyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 0.0/255.0, blue: 32.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Carmine (M&P), whose RBG values are (215, 0, 64), and has the specified opacity. + Returns a UIColor object representing the color Burlywood, whose RBG values are (222, 184, 135), 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 carmineMandPColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 215.0/255.0, green: 0.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + class func burlywoodColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 222.0/255.0, green: 184.0/255.0, blue: 135.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Carmine Pink, whose RBG values are (235, 76, 66), and has the specified opacity. + Returns a UIColor object representing the color Burnt Orange (Crayola), whose RBG values are (255, 127, 73), 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 carminePinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 235.0/255.0, green: 76.0/255.0, blue: 66.0/255.0, alpha: alpha ) } + class func burntOrangeCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 127.0/255.0, blue: 73.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Carmine Red, whose RBG values are (255, 0, 56), and has the specified opacity. + Returns a UIColor object representing the color Burnt Sienna (Crayola), whose RBG values are (234, 126, 93), 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 carmineRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 56.0/255.0, alpha: alpha ) } + class func burntSiennaCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 234.0/255.0, green: 126.0/255.0, blue: 93.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Carnation Pink (Crayola), whose RBG values are (255, 170, 204), and has the specified opacity. + Returns a UIColor object representing the color Burnt Orange, whose RBG values are (204, 85, 0), 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 carnationPinkCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 170.0/255.0, blue: 204.0/255.0, alpha: alpha ) } + class func burntOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 85.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Carnation Pink, whose RBG values are (255, 166, 201), and has the specified opacity. + Returns a UIColor object representing the color Burnt Sienna, whose RBG values are (233, 116, 81), 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 carnationPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 166.0/255.0, blue: 201.0/255.0, alpha: alpha ) } + class func burntSiennaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 233.0/255.0, green: 116.0/255.0, blue: 81.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Carnelian, whose RBG values are (179, 27, 27), and has the specified opacity. + Returns a UIColor object representing the color Burnt Umber, whose RBG values are (138, 51, 36), 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 carnelianColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 179.0/255.0, green: 27.0/255.0, blue: 27.0/255.0, alpha: alpha ) } + class func burntUmberColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 138.0/255.0, green: 51.0/255.0, blue: 36.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Carolina Blue, whose RBG values are (86, 160, 211), and has the specified opacity. + Returns a UIColor object representing the color Byzantine, whose RBG values are (189, 51, 164), 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 carolinaBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 86.0/255.0, green: 160.0/255.0, blue: 211.0/255.0, alpha: alpha ) } + class func byzantineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 189.0/255.0, green: 51.0/255.0, blue: 164.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Carrot Orange, whose RBG values are (237, 145, 33), and has the specified opacity. + Returns a UIColor object representing the color Byzantium, whose RBG values are (112, 41, 99), 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 carrotOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 237.0/255.0, green: 145.0/255.0, blue: 33.0/255.0, alpha: alpha ) } + class func byzantiumColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 112.0/255.0, green: 41.0/255.0, blue: 99.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Castleton Green, whose RBG values are (0, 86, 63), and has the specified opacity. + Returns a UIColor object representing the color CG Blue, whose RBG values are (0, 122, 165), 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 castletonGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 86.0/255.0, blue: 63.0/255.0, alpha: alpha ) } + class func cGBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 122.0/255.0, blue: 165.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Catalina Blue, whose RBG values are (6, 42, 120), and has the specified opacity. + Returns a UIColor object representing the color CG Red, whose RBG values are (224, 60, 49), 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 catalinaBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 6.0/255.0, green: 42.0/255.0, blue: 120.0/255.0, alpha: alpha ) } + class func cGRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 224.0/255.0, green: 60.0/255.0, blue: 49.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Catawba, whose RBG values are (112, 54, 66), and has the specified opacity. + Returns a UIColor object representing the color Cadet, whose RBG values are (83, 104, 114), 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 catawbaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 112.0/255.0, green: 54.0/255.0, blue: 66.0/255.0, alpha: alpha ) } + class func cadetColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 83.0/255.0, green: 104.0/255.0, blue: 114.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cedar Chest, whose RBG values are (201, 90, 73), and has the specified opacity. + Returns a UIColor object representing the color Cadet Blue (Crayola), whose RBG values are (176, 183, 198), 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 cedarChestColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 201.0/255.0, green: 90.0/255.0, blue: 73.0/255.0, alpha: alpha ) } + class func cadetBlueCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 176.0/255.0, green: 183.0/255.0, blue: 198.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Ceil, whose RBG values are (146, 161, 207), and has the specified opacity. + Returns a UIColor object representing the color Cadet Blue, whose RBG values are (95, 158, 160), 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 ceilColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 146.0/255.0, green: 161.0/255.0, blue: 207.0/255.0, alpha: alpha ) } + class func cadetBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 95.0/255.0, green: 158.0/255.0, blue: 160.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Celadon, whose RBG values are (172, 225, 175), and has the specified opacity. + Returns a UIColor object representing the color Cadet Grey, whose RBG values are (145, 163, 176), 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 celadonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 172.0/255.0, green: 225.0/255.0, blue: 175.0/255.0, alpha: alpha ) } + class func cadetGreyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 145.0/255.0, green: 163.0/255.0, blue: 176.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Celadon Blue, whose RBG values are (0, 123, 167), and has the specified opacity. + Returns a UIColor object representing the color Cadmium Green, whose RBG values are (0, 107, 60), 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 celadonBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 123.0/255.0, blue: 167.0/255.0, alpha: alpha ) } + class func cadmiumGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 107.0/255.0, blue: 60.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Celadon Green, whose RBG values are (47, 132, 124), and has the specified opacity. + Returns a UIColor object representing the color Cadmium Orange, whose RBG values are (237, 135, 45), 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 celadonGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 47.0/255.0, green: 132.0/255.0, blue: 124.0/255.0, alpha: alpha ) } + class func cadmiumOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 237.0/255.0, green: 135.0/255.0, blue: 45.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Celeste, whose RBG values are (178, 255, 255), and has the specified opacity. + Returns a UIColor object representing the color Cadmium Red, whose RBG values are (227, 0, 34), 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 celesteColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 178.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func cadmiumRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 227.0/255.0, green: 0.0/255.0, blue: 34.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Celeste Opaco, whose RBG values are (128, 204, 204), and has the specified opacity. + Returns a UIColor object representing the color Cadmium Yellow, whose RBG values are (255, 246, 0), 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 celesteOpacoColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 128.0/255.0, green: 204.0/255.0, blue: 204.0/255.0, alpha: alpha ) } + class func cadmiumYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 246.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Celeste Pallido, whose RBG values are (204, 255, 255), and has the specified opacity. + Returns a UIColor object representing the color Café Au Lait, whose RBG values are (166, 123, 91), 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 celestePallidoColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func caféAuLaitColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 166.0/255.0, green: 123.0/255.0, blue: 91.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Celeste Polvere, whose RBG values are (230, 255, 255), and has the specified opacity. + Returns a UIColor object representing the color Café Noir, whose RBG values are (75, 54, 33), 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 celestePolvereColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 230.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func caféNoirColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 75.0/255.0, green: 54.0/255.0, blue: 33.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Celeste Velato, whose RBG values are (204, 230, 230), and has the specified opacity. + Returns a UIColor object representing the color Cal Poly Green, whose RBG values are (30, 77, 43), 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 celesteVelatoColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 230.0/255.0, blue: 230.0/255.0, alpha: alpha ) } + class func calPolyGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 30.0/255.0, green: 77.0/255.0, blue: 43.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Celestial Blue, whose RBG values are (73, 151, 208), and has the specified opacity. + Returns a UIColor object representing the color Cambridge Blue, whose RBG values are (163, 193, 173), 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 celestialBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 73.0/255.0, green: 151.0/255.0, blue: 208.0/255.0, alpha: alpha ) } + class func cambridgeBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 163.0/255.0, green: 193.0/255.0, blue: 173.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cerise, whose RBG values are (222, 49, 99), and has the specified opacity. + Returns a UIColor object representing the color Camel, whose RBG values are (193, 154, 107), 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 ceriseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 222.0/255.0, green: 49.0/255.0, blue: 99.0/255.0, alpha: alpha ) } + class func camelColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 193.0/255.0, green: 154.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cerise (Crayola), whose RBG values are (221, 68, 146), and has the specified opacity. + Returns a UIColor object representing the color Cameo Pink, whose RBG values are (239, 187, 204), 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 ceriseCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 221.0/255.0, green: 68.0/255.0, blue: 146.0/255.0, alpha: alpha ) } + class func cameoPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 187.0/255.0, blue: 204.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cerise Pink, whose RBG values are (236, 59, 131), and has the specified opacity. + Returns a UIColor object representing the color Camouflage Green, whose RBG values are (120, 134, 107), 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 cerisePinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 236.0/255.0, green: 59.0/255.0, blue: 131.0/255.0, alpha: alpha ) } + class func camouflageGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 120.0/255.0, green: 134.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cerulean, whose RBG values are (0, 123, 167), and has the specified opacity. + Returns a UIColor object representing the color Canary (Crayola), whose RBG values are (255, 255, 153), 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 ceruleanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 123.0/255.0, blue: 167.0/255.0, alpha: alpha ) } + class func canaryCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 153.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cerulean (Crayola), whose RBG values are (29, 172, 214), and has the specified opacity. + Returns a UIColor object representing the color Canary Yellow, whose RBG values are (255, 239, 0), 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 ceruleanCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 29.0/255.0, green: 172.0/255.0, blue: 214.0/255.0, alpha: alpha ) } + class func canaryYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 239.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cerulean Blue, whose RBG values are (42, 82, 190), and has the specified opacity. + Returns a UIColor object representing the color Candy Apple Red, whose RBG values are (255, 8, 0), 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 ceruleanBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 42.0/255.0, green: 82.0/255.0, blue: 190.0/255.0, alpha: alpha ) } + class func candyAppleRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 8.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cerulean Frost, whose RBG values are (109, 155, 195), and has the specified opacity. + Returns a UIColor object representing the color Candy Pink, whose RBG values are (228, 113, 122), 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 ceruleanFrostColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 109.0/255.0, green: 155.0/255.0, blue: 195.0/255.0, alpha: alpha ) } + class func candyPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 228.0/255.0, green: 113.0/255.0, blue: 122.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chamoisee, whose RBG values are (160, 120, 90), and has the specified opacity. + Returns a UIColor object representing the color Capri, whose RBG values are (0, 191, 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 chamoiseeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 160.0/255.0, green: 120.0/255.0, blue: 90.0/255.0, alpha: alpha ) } + class func capriColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 191.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Champagne, whose RBG values are (247, 231, 206), and has the specified opacity. + Returns a UIColor object representing the color Caput Mortuum, whose RBG values are (89, 39, 32), 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 champagneColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 247.0/255.0, green: 231.0/255.0, blue: 206.0/255.0, alpha: alpha ) } + class func caputMortuumColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 89.0/255.0, green: 39.0/255.0, blue: 32.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Charcoal, whose RBG values are (54, 69, 79), and has the specified opacity. + Returns a UIColor object representing the color Cardinal, whose RBG values are (196, 30, 58), 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 charcoalColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 54.0/255.0, green: 69.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + class func cardinalColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 196.0/255.0, green: 30.0/255.0, blue: 58.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Charleston Green, whose RBG values are (35, 43, 43), and has the specified opacity. + Returns a UIColor object representing the color Caribbean Green (Crayola), whose RBG values are (0, 204, 153), 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 charlestonGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 35.0/255.0, green: 43.0/255.0, blue: 43.0/255.0, alpha: alpha ) } + class func caribbeanGreenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 204.0/255.0, blue: 153.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Charm Pink, whose RBG values are (230, 143, 172), and has the specified opacity. + Returns a UIColor object representing the color Carmine, whose RBG values are (150, 0, 24), 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 charmPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 230.0/255.0, green: 143.0/255.0, blue: 172.0/255.0, alpha: alpha ) } + class func carmineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 150.0/255.0, green: 0.0/255.0, blue: 24.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chartreuse (Traditional), whose RBG values are (223, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Carmine (M&P), whose RBG values are (215, 0, 64), 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 chartreuseTraditionalColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 223.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func carmineMandPColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 215.0/255.0, green: 0.0/255.0, blue: 64.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chartreuse (Web), whose RBG values are (127, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Carmine Pink, whose RBG values are (235, 76, 66), 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 chartreuseWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 127.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func carminePinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 235.0/255.0, green: 76.0/255.0, blue: 66.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cherry, whose RBG values are (222, 49, 99), and has the specified opacity. + Returns a UIColor object representing the color Carmine Red, whose RBG values are (255, 0, 56), 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 cherryColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 222.0/255.0, green: 49.0/255.0, blue: 99.0/255.0, alpha: alpha ) } + class func carmineRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 56.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cherry Blossom Pink, whose RBG values are (255, 183, 197), and has the specified opacity. + Returns a UIColor object representing the color Carnation Pink (Crayola), whose RBG values are (255, 170, 204), 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 cherryBlossomPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 183.0/255.0, blue: 197.0/255.0, alpha: alpha ) } + class func carnationPinkCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 170.0/255.0, blue: 204.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chestnut, whose RBG values are (149, 69, 53), and has the specified opacity. + Returns a UIColor object representing the color Carnation Pink, whose RBG values are (255, 166, 201), 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 chestnutColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 149.0/255.0, green: 69.0/255.0, blue: 53.0/255.0, alpha: alpha ) } + class func carnationPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 166.0/255.0, blue: 201.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chestnut (Crayola), whose RBG values are (188, 93, 88), and has the specified opacity. + Returns a UIColor object representing the color Carnelian, whose RBG values are (179, 27, 27), 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 chestnutCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 188.0/255.0, green: 93.0/255.0, blue: 88.0/255.0, alpha: alpha ) } + class func carnelianColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 179.0/255.0, green: 27.0/255.0, blue: 27.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color China Pink, whose RBG values are (222, 111, 161), and has the specified opacity. + Returns a UIColor object representing the color Carolina Blue, whose RBG values are (86, 160, 211), 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 chinaPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 222.0/255.0, green: 111.0/255.0, blue: 161.0/255.0, alpha: alpha ) } + class func carolinaBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 86.0/255.0, green: 160.0/255.0, blue: 211.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color China Rose, whose RBG values are (168, 81, 110), and has the specified opacity. + Returns a UIColor object representing the color Carrot Orange, whose RBG values are (237, 145, 33), 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 chinaRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 168.0/255.0, green: 81.0/255.0, blue: 110.0/255.0, alpha: alpha ) } + class func carrotOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 237.0/255.0, green: 145.0/255.0, blue: 33.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chinese Red, whose RBG values are (170, 56, 30), and has the specified opacity. + Returns a UIColor object representing the color Castleton Green, whose RBG values are (0, 86, 63), 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 chineseRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 170.0/255.0, green: 56.0/255.0, blue: 30.0/255.0, alpha: alpha ) } + class func castletonGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 86.0/255.0, blue: 63.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chinese Violet, whose RBG values are (133, 96, 136), and has the specified opacity. + Returns a UIColor object representing the color Catalina Blue, whose RBG values are (6, 42, 120), 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 chineseVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 133.0/255.0, green: 96.0/255.0, blue: 136.0/255.0, alpha: alpha ) } + class func catalinaBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 6.0/255.0, green: 42.0/255.0, blue: 120.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chocolate (Traditional), whose RBG values are (123, 63, 0), and has the specified opacity. + Returns a UIColor object representing the color Catawba, whose RBG values are (112, 54, 66), 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 chocolateTraditionalColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 123.0/255.0, green: 63.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func catawbaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 112.0/255.0, green: 54.0/255.0, blue: 66.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chocolate (Web), whose RBG values are (210, 105, 30), and has the specified opacity. + Returns a UIColor object representing the color Cedar Chest, whose RBG values are (201, 90, 73), 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 chocolateWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 210.0/255.0, green: 105.0/255.0, blue: 30.0/255.0, alpha: alpha ) } + class func cedarChestColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 201.0/255.0, green: 90.0/255.0, blue: 73.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Chrome Yellow, whose RBG values are (255, 167, 0), and has the specified opacity. + Returns a UIColor object representing the color Ceil, whose RBG values are (146, 161, 207), 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 chromeYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 167.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func ceilColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 146.0/255.0, green: 161.0/255.0, blue: 207.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cinereous, whose RBG values are (152, 129, 123), and has the specified opacity. + Returns a UIColor object representing the color Celadon, whose RBG values are (172, 225, 175), 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 cinereousColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 152.0/255.0, green: 129.0/255.0, blue: 123.0/255.0, alpha: alpha ) } + class func celadonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 172.0/255.0, green: 225.0/255.0, blue: 175.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cinnabar, whose RBG values are (227, 66, 52), and has the specified opacity. + Returns a UIColor object representing the color Celadon Blue, whose RBG values are (0, 123, 167), 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 cinnabarColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 227.0/255.0, green: 66.0/255.0, blue: 52.0/255.0, alpha: alpha ) } + class func celadonBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 123.0/255.0, blue: 167.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cinnamon, whose RBG values are (210, 105, 30), and has the specified opacity. + Returns a UIColor object representing the color Celadon Green, whose RBG values are (47, 132, 124), 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 cinnamonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 210.0/255.0, green: 105.0/255.0, blue: 30.0/255.0, alpha: alpha ) } + class func celadonGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 47.0/255.0, green: 132.0/255.0, blue: 124.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Citrine, whose RBG values are (228, 208, 10), and has the specified opacity. + Returns a UIColor object representing the color Celeste, whose RBG values are (178, 255, 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 citrineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 228.0/255.0, green: 208.0/255.0, blue: 10.0/255.0, alpha: alpha ) } + class func celesteColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Citron, whose RBG values are (158, 169, 31), and has the specified opacity. + Returns a UIColor object representing the color Celeste Opaco, whose RBG values are (128, 204, 204), 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 citronColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 158.0/255.0, green: 169.0/255.0, blue: 31.0/255.0, alpha: alpha ) } + class func celesteOpacoColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 204.0/255.0, blue: 204.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Claret, whose RBG values are (127, 23, 52), and has the specified opacity. + Returns a UIColor object representing the color Celeste Pallido, whose RBG values are (204, 255, 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 claretColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 127.0/255.0, green: 23.0/255.0, blue: 52.0/255.0, alpha: alpha ) } + class func celestePallidoColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Classic Rose, whose RBG values are (251, 204, 231), and has the specified opacity. + Returns a UIColor object representing the color Celeste Polvere, whose RBG values are (230, 255, 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 classicRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 251.0/255.0, green: 204.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + class func celestePolvereColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cobalt Blue, whose RBG values are (0, 71, 171), and has the specified opacity. + Returns a UIColor object representing the color Celeste Velato, whose RBG values are (204, 230, 230), 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 cobaltBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 71.0/255.0, blue: 171.0/255.0, alpha: alpha ) } + class func celesteVelatoColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 230.0/255.0, blue: 230.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cocoa Brown, whose RBG values are (210, 105, 30), and has the specified opacity. + Returns a UIColor object representing the color Celestial Blue, whose RBG values are (73, 151, 208), 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 cocoaBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 210.0/255.0, green: 105.0/255.0, blue: 30.0/255.0, alpha: alpha ) } + class func celestialBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 73.0/255.0, green: 151.0/255.0, blue: 208.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Coconut, whose RBG values are (150, 90, 62), and has the specified opacity. + Returns a UIColor object representing the color Cerise, whose RBG values are (222, 49, 99), 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 coconutColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 150.0/255.0, green: 90.0/255.0, blue: 62.0/255.0, alpha: alpha ) } + class func ceriseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 222.0/255.0, green: 49.0/255.0, blue: 99.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Coffee, whose RBG values are (111, 78, 55), and has the specified opacity. + Returns a UIColor object representing the color Cerise (Crayola), whose RBG values are (221, 68, 146), 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 coffeeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 111.0/255.0, green: 78.0/255.0, blue: 55.0/255.0, alpha: alpha ) } + class func ceriseCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 221.0/255.0, green: 68.0/255.0, blue: 146.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Columbia Blue, whose RBG values are (196, 216, 226), and has the specified opacity. + Returns a UIColor object representing the color Cerise Pink, whose RBG values are (236, 59, 131), 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 columbiaBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 196.0/255.0, green: 216.0/255.0, blue: 226.0/255.0, alpha: alpha ) } + class func cerisePinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 236.0/255.0, green: 59.0/255.0, blue: 131.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Congo Pink, whose RBG values are (248, 131, 121), and has the specified opacity. + Returns a UIColor object representing the color Cerulean, whose RBG values are (0, 123, 167), 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 congoPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 248.0/255.0, green: 131.0/255.0, blue: 121.0/255.0, alpha: alpha ) } + class func ceruleanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 123.0/255.0, blue: 167.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cool Black, whose RBG values are (0, 46, 99), and has the specified opacity. + Returns a UIColor object representing the color Cerulean (Crayola), whose RBG values are (29, 172, 214), 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 coolBlackColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 46.0/255.0, blue: 99.0/255.0, alpha: alpha ) } + class func ceruleanCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 29.0/255.0, green: 172.0/255.0, blue: 214.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cool Grey, whose RBG values are (140, 146, 172), and has the specified opacity. + Returns a UIColor object representing the color Cerulean Blue, whose RBG values are (42, 82, 190), 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 coolGreyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 140.0/255.0, green: 146.0/255.0, blue: 172.0/255.0, alpha: alpha ) } + class func ceruleanBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 42.0/255.0, green: 82.0/255.0, blue: 190.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Copper, whose RBG values are (184, 115, 51), and has the specified opacity. + Returns a UIColor object representing the color Cerulean Frost, whose RBG values are (109, 155, 195), 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 copperColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 184.0/255.0, green: 115.0/255.0, blue: 51.0/255.0, alpha: alpha ) } + class func ceruleanFrostColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 109.0/255.0, green: 155.0/255.0, blue: 195.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Copper (Crayola Alternate), whose RBG values are (221, 148, 117), and has the specified opacity. + Returns a UIColor object representing the color Chamoisee, whose RBG values are (160, 120, 90), 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 copperCrayolaAlternateColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 221.0/255.0, green: 148.0/255.0, blue: 117.0/255.0, alpha: alpha ) } + class func chamoiseeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 160.0/255.0, green: 120.0/255.0, blue: 90.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Copper (Crayola), whose RBG values are (218, 138, 103), and has the specified opacity. + Returns a UIColor object representing the color Champagne, whose RBG values are (247, 231, 206), 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 copperCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 218.0/255.0, green: 138.0/255.0, blue: 103.0/255.0, alpha: alpha ) } + class func champagneColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 247.0/255.0, green: 231.0/255.0, blue: 206.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Copper Penny, whose RBG values are (173, 111, 105), and has the specified opacity. + Returns a UIColor object representing the color Charcoal, whose RBG values are (54, 69, 79), 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 copperPennyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 173.0/255.0, green: 111.0/255.0, blue: 105.0/255.0, alpha: alpha ) } + class func charcoalColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 54.0/255.0, green: 69.0/255.0, blue: 79.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Copper Red, whose RBG values are (203, 109, 81), and has the specified opacity. + Returns a UIColor object representing the color Charleston Green, whose RBG values are (35, 43, 43), 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 copperRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 203.0/255.0, green: 109.0/255.0, blue: 81.0/255.0, alpha: alpha ) } + class func charlestonGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 35.0/255.0, green: 43.0/255.0, blue: 43.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Copper Rose, whose RBG values are (153, 102, 102), and has the specified opacity. + Returns a UIColor object representing the color Charm Pink, whose RBG values are (230, 143, 172), 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 copperRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 153.0/255.0, green: 102.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + class func charmPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 143.0/255.0, blue: 172.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Coquelicot, whose RBG values are (255, 56, 0), and has the specified opacity. + Returns a UIColor object representing the color Chartreuse (Traditional), whose RBG values are (223, 255, 0), 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 coquelicotColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 56.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func chartreuseTraditionalColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 223.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Coral, whose RBG values are (255, 127, 80), and has the specified opacity. + Returns a UIColor object representing the color Chartreuse (Web), whose RBG values are (127, 255, 0), 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 coralColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 127.0/255.0, blue: 80.0/255.0, alpha: alpha ) } + class func chartreuseWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 127.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Coral Pink, whose RBG values are (248, 131, 121), and has the specified opacity. + Returns a UIColor object representing the color Cherry, whose RBG values are (222, 49, 99), 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 coralPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 248.0/255.0, green: 131.0/255.0, blue: 121.0/255.0, alpha: alpha ) } + class func cherryColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 222.0/255.0, green: 49.0/255.0, blue: 99.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Coral Red, whose RBG values are (255, 64, 64), and has the specified opacity. + Returns a UIColor object representing the color Cherry Blossom Pink, whose RBG values are (255, 183, 197), 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 coralRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 64.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + class func cherryBlossomPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 183.0/255.0, blue: 197.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cordovan, whose RBG values are (137, 63, 69), and has the specified opacity. + Returns a UIColor object representing the color Chestnut, whose RBG values are (149, 69, 53), 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 cordovanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 137.0/255.0, green: 63.0/255.0, blue: 69.0/255.0, alpha: alpha ) } + class func chestnutColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 149.0/255.0, green: 69.0/255.0, blue: 53.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Corn, whose RBG values are (251, 236, 93), and has the specified opacity. + Returns a UIColor object representing the color Chestnut (Crayola), whose RBG values are (188, 93, 88), 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 cornColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 251.0/255.0, green: 236.0/255.0, blue: 93.0/255.0, alpha: alpha ) } + class func chestnutCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 188.0/255.0, green: 93.0/255.0, blue: 88.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cornell Red, whose RBG values are (179, 27, 27), and has the specified opacity. + Returns a UIColor object representing the color China Pink, whose RBG values are (222, 111, 161), 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 cornellRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 179.0/255.0, green: 27.0/255.0, blue: 27.0/255.0, alpha: alpha ) } + class func chinaPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 222.0/255.0, green: 111.0/255.0, blue: 161.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cornflower Blue (Crayola), whose RBG values are (154, 206, 235), and has the specified opacity. + Returns a UIColor object representing the color China Rose, whose RBG values are (168, 81, 110), 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 cornflowerBlueCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 154.0/255.0, green: 206.0/255.0, blue: 235.0/255.0, alpha: alpha ) } + class func chinaRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 168.0/255.0, green: 81.0/255.0, blue: 110.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cornflower Blue, whose RBG values are (100, 149, 237), and has the specified opacity. + Returns a UIColor object representing the color Chinese Red, whose RBG values are (170, 56, 30), 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 cornflowerBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 100.0/255.0, green: 149.0/255.0, blue: 237.0/255.0, alpha: alpha ) } + class func chineseRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 170.0/255.0, green: 56.0/255.0, blue: 30.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cornsilk, whose RBG values are (255, 248, 220), and has the specified opacity. + Returns a UIColor object representing the color Chinese Violet, whose RBG values are (133, 96, 136), 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 cornsilkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 248.0/255.0, blue: 220.0/255.0, alpha: alpha ) } + class func chineseVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 133.0/255.0, green: 96.0/255.0, blue: 136.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cosmic Latte, whose RBG values are (255, 248, 231), and has the specified opacity. + Returns a UIColor object representing the color Chocolate (Traditional), whose RBG values are (123, 63, 0), 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 cosmicLatteColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 248.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + class func chocolateTraditionalColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 123.0/255.0, green: 63.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cotton Candy (Crayola), whose RBG values are (255, 188, 217), and has the specified opacity. + Returns a UIColor object representing the color Chocolate (Web), whose RBG values are (210, 105, 30), 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 cottonCandyCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 188.0/255.0, blue: 217.0/255.0, alpha: alpha ) } + class func chocolateWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 210.0/255.0, green: 105.0/255.0, blue: 30.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Coyote Brown, whose RBG values are (129, 97, 60), and has the specified opacity. + Returns a UIColor object representing the color Chrome Yellow, whose RBG values are (255, 167, 0), 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 coyoteBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 129.0/255.0, green: 97.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + class func chromeYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 167.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cream, whose RBG values are (255, 253, 208), and has the specified opacity. + Returns a UIColor object representing the color Cinereous, whose RBG values are (152, 129, 123), 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 creamColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 253.0/255.0, blue: 208.0/255.0, alpha: alpha ) } + class func cinereousColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 152.0/255.0, green: 129.0/255.0, blue: 123.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Crimson, whose RBG values are (220, 20, 60), and has the specified opacity. + Returns a UIColor object representing the color Cinnabar, whose RBG values are (227, 66, 52), 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 crimsonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 220.0/255.0, green: 20.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + class func cinnabarColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 227.0/255.0, green: 66.0/255.0, blue: 52.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Crimson Glory, whose RBG values are (190, 0, 50), and has the specified opacity. + Returns a UIColor object representing the color Cinnamon, whose RBG values are (210, 105, 30), 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 crimsonGloryColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 190.0/255.0, green: 0.0/255.0, blue: 50.0/255.0, alpha: alpha ) } + class func cinnamonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 210.0/255.0, green: 105.0/255.0, blue: 30.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Crimson Red, whose RBG values are (153, 0, 0), and has the specified opacity. + Returns a UIColor object representing the color Citrine, whose RBG values are (228, 208, 10), 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 crimsonRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 153.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func citrineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 228.0/255.0, green: 208.0/255.0, blue: 10.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cyan (Process), whose RBG values are (0, 183, 235), and has the specified opacity. + Returns a UIColor object representing the color Citron, whose RBG values are (158, 169, 31), 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 cyanProcessColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 183.0/255.0, blue: 235.0/255.0, alpha: alpha ) } + class func citronColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 158.0/255.0, green: 169.0/255.0, blue: 31.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cyan Azure, whose RBG values are (78, 130, 180), and has the specified opacity. + Returns a UIColor object representing the color Claret, whose RBG values are (127, 23, 52), 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 cyanAzureColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 78.0/255.0, green: 130.0/255.0, blue: 180.0/255.0, alpha: alpha ) } + class func claretColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 127.0/255.0, green: 23.0/255.0, blue: 52.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cyan Cobalt Blue, whose RBG values are (40, 88, 156), and has the specified opacity. + Returns a UIColor object representing the color Classic Rose, whose RBG values are (251, 204, 231), 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 cyanCobaltBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 40.0/255.0, green: 88.0/255.0, blue: 156.0/255.0, alpha: alpha ) } + class func classicRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 204.0/255.0, blue: 231.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cyan Cornflower Blue, whose RBG values are (24, 139, 194), and has the specified opacity. + Returns a UIColor object representing the color Cobalt Blue, whose RBG values are (0, 71, 171), 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 cyanCornflowerBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 24.0/255.0, green: 139.0/255.0, blue: 194.0/255.0, alpha: alpha ) } + class func cobaltBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 71.0/255.0, blue: 171.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cyan-Blue Azure, whose RBG values are (70, 130, 191), and has the specified opacity. + Returns a UIColor object representing the color Cocoa Brown, whose RBG values are (210, 105, 30), 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 cyanBlueAzureColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 70.0/255.0, green: 130.0/255.0, blue: 191.0/255.0, alpha: alpha ) } + class func cocoaBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 210.0/255.0, green: 105.0/255.0, blue: 30.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cyber Grape, whose RBG values are (88, 66, 124), and has the specified opacity. + Returns a UIColor object representing the color Coconut, whose RBG values are (150, 90, 62), 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 cyberGrapeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 88.0/255.0, green: 66.0/255.0, blue: 124.0/255.0, alpha: alpha ) } + class func coconutColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 150.0/255.0, green: 90.0/255.0, blue: 62.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Cyber Yellow, whose RBG values are (255, 211, 0), and has the specified opacity. + Returns a UIColor object representing the color Coffee, whose RBG values are (111, 78, 55), 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 cyberYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 211.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func coffeeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 111.0/255.0, green: 78.0/255.0, blue: 55.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Daffodil, whose RBG values are (255, 255, 49), and has the specified opacity. + Returns a UIColor object representing the color Columbia Blue, whose RBG values are (196, 216, 226), 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 daffodilColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 49.0/255.0, alpha: alpha ) } + class func columbiaBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 196.0/255.0, green: 216.0/255.0, blue: 226.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dandelion, whose RBG values are (240, 225, 48), and has the specified opacity. + Returns a UIColor object representing the color Congo Pink, whose RBG values are (248, 131, 121), 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 dandelionColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 240.0/255.0, green: 225.0/255.0, blue: 48.0/255.0, alpha: alpha ) } + class func congoPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 248.0/255.0, green: 131.0/255.0, blue: 121.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dandelion (Crayola), whose RBG values are (253, 219, 109), and has the specified opacity. + Returns a UIColor object representing the color Cool Black, whose RBG values are (0, 46, 99), 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 dandelionCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 253.0/255.0, green: 219.0/255.0, blue: 109.0/255.0, alpha: alpha ) } + class func coolBlackColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 46.0/255.0, blue: 99.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Blue, whose RBG values are (0, 0, 139), and has the specified opacity. + Returns a UIColor object representing the color Cool Grey, whose RBG values are (140, 146, 172), 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 darkBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 0.0/255.0, blue: 139.0/255.0, alpha: alpha ) } + class func coolGreyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 140.0/255.0, green: 146.0/255.0, blue: 172.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Blue-Gray, whose RBG values are (102, 102, 153), and has the specified opacity. + Returns a UIColor object representing the color Copper, whose RBG values are (184, 115, 51), 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 darkBlueGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 102.0/255.0, green: 102.0/255.0, blue: 153.0/255.0, alpha: alpha ) } + class func copperColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 184.0/255.0, green: 115.0/255.0, blue: 51.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Brown, whose RBG values are (101, 67, 33), and has the specified opacity. + Returns a UIColor object representing the color Copper (Crayola Alternate), whose RBG values are (221, 148, 117), 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 darkBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 101.0/255.0, green: 67.0/255.0, blue: 33.0/255.0, alpha: alpha ) } + class func copperCrayolaAlternateColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 221.0/255.0, green: 148.0/255.0, blue: 117.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Brown-Tangelo, whose RBG values are (136, 101, 78), and has the specified opacity. + Returns a UIColor object representing the color Copper (Crayola), whose RBG values are (218, 138, 103), 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 darkBrownTangeloColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 136.0/255.0, green: 101.0/255.0, blue: 78.0/255.0, alpha: alpha ) } + class func copperCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 218.0/255.0, green: 138.0/255.0, blue: 103.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Byzantium, whose RBG values are (93, 57, 84), and has the specified opacity. + Returns a UIColor object representing the color Copper Penny, whose RBG values are (173, 111, 105), 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 darkByzantiumColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 93.0/255.0, green: 57.0/255.0, blue: 84.0/255.0, alpha: alpha ) } + class func copperPennyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 173.0/255.0, green: 111.0/255.0, blue: 105.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Candy Apple Red, whose RBG values are (164, 0, 0), and has the specified opacity. + Returns a UIColor object representing the color Copper Red, whose RBG values are (203, 109, 81), 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 darkCandyAppleRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 164.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func copperRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 203.0/255.0, green: 109.0/255.0, blue: 81.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Cerulean, whose RBG values are (8, 69, 126), and has the specified opacity. + Returns a UIColor object representing the color Copper Rose, whose RBG values are (153, 102, 102), 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 darkCeruleanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 8.0/255.0, green: 69.0/255.0, blue: 126.0/255.0, alpha: alpha ) } + class func copperRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 153.0/255.0, green: 102.0/255.0, blue: 102.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Chestnut, whose RBG values are (152, 105, 96), and has the specified opacity. + Returns a UIColor object representing the color Coquelicot, whose RBG values are (255, 56, 0), 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 darkChestnutColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 152.0/255.0, green: 105.0/255.0, blue: 96.0/255.0, alpha: alpha ) } + class func coquelicotColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 56.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Coral, whose RBG values are (205, 91, 69), and has the specified opacity. + Returns a UIColor object representing the color Coral, whose RBG values are (255, 127, 80), 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 darkCoralColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 205.0/255.0, green: 91.0/255.0, blue: 69.0/255.0, alpha: alpha ) } + class func coralColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 127.0/255.0, blue: 80.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Cyan, whose RBG values are (0, 139, 139), and has the specified opacity. + Returns a UIColor object representing the color Coral Pink, whose RBG values are (248, 131, 121), 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 darkCyanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 139.0/255.0, blue: 139.0/255.0, alpha: alpha ) } + class func coralPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 248.0/255.0, green: 131.0/255.0, blue: 121.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Electric Blue, whose RBG values are (83, 104, 120), and has the specified opacity. + Returns a UIColor object representing the color Coral Red, whose RBG values are (255, 64, 64), 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 darkElectricBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 83.0/255.0, green: 104.0/255.0, blue: 120.0/255.0, alpha: alpha ) } + class func coralRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 64.0/255.0, blue: 64.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Goldenrod, whose RBG values are (184, 134, 11), and has the specified opacity. + Returns a UIColor object representing the color Cordovan, whose RBG values are (137, 63, 69), 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 darkGoldenrodColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 184.0/255.0, green: 134.0/255.0, blue: 11.0/255.0, alpha: alpha ) } + class func cordovanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 137.0/255.0, green: 63.0/255.0, blue: 69.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Gray (X11), whose RBG values are (169, 169, 169), and has the specified opacity. + Returns a UIColor object representing the color Corn, whose RBG values are (251, 236, 93), 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 darkGrayX11Color ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 169.0/255.0, green: 169.0/255.0, blue: 169.0/255.0, alpha: alpha ) } + class func cornColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 236.0/255.0, blue: 93.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Green, whose RBG values are (1, 50, 32), and has the specified opacity. + Returns a UIColor object representing the color Cornell Red, whose RBG values are (179, 27, 27), 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 darkGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 1.0/255.0, green: 50.0/255.0, blue: 32.0/255.0, alpha: alpha ) } + class func cornellRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 179.0/255.0, green: 27.0/255.0, blue: 27.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Green (X11), whose RBG values are (0, 100, 0), and has the specified opacity. + Returns a UIColor object representing the color Cornflower Blue (Crayola), whose RBG values are (154, 206, 235), 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 darkGreenX11Color ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 100.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func cornflowerBlueCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 154.0/255.0, green: 206.0/255.0, blue: 235.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Gunmetal, whose RBG values are (31, 38, 42), and has the specified opacity. + Returns a UIColor object representing the color Cornflower Blue, whose RBG values are (100, 149, 237), 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 darkGunmetalColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 31.0/255.0, green: 38.0/255.0, blue: 42.0/255.0, alpha: alpha ) } + class func cornflowerBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 100.0/255.0, green: 149.0/255.0, blue: 237.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Imperial Blue 1, whose RBG values are (0, 65, 106), and has the specified opacity. + Returns a UIColor object representing the color Cornsilk, whose RBG values are (255, 248, 220), 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 darkImperialBlue1Color ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 65.0/255.0, blue: 106.0/255.0, alpha: alpha ) } + class func cornsilkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 248.0/255.0, blue: 220.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Imperial Blue 2, whose RBG values are (0, 20, 126), and has the specified opacity. + Returns a UIColor object representing the color Cosmic Latte, whose RBG values are (255, 248, 231), 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 darkImperialBlue2Color ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 20.0/255.0, blue: 126.0/255.0, alpha: alpha ) } + class func cosmicLatteColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 248.0/255.0, blue: 231.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Jungle Green, whose RBG values are (26, 36, 33), and has the specified opacity. + Returns a UIColor object representing the color Cotton Candy (Crayola), whose RBG values are (255, 188, 217), 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 darkJungleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 26.0/255.0, green: 36.0/255.0, blue: 33.0/255.0, alpha: alpha ) } + class func cottonCandyCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 188.0/255.0, blue: 217.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Khaki, whose RBG values are (189, 183, 107), and has the specified opacity. + Returns a UIColor object representing the color Coyote Brown, whose RBG values are (129, 97, 60), 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 darkKhakiColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 189.0/255.0, green: 183.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func coyoteBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 129.0/255.0, green: 97.0/255.0, blue: 60.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Lava, whose RBG values are (72, 60, 50), and has the specified opacity. + Returns a UIColor object representing the color Cream, whose RBG values are (255, 253, 208), 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 darkLavaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 72.0/255.0, green: 60.0/255.0, blue: 50.0/255.0, alpha: alpha ) } + class func creamColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 253.0/255.0, blue: 208.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Lavender, whose RBG values are (115, 79, 150), and has the specified opacity. + Returns a UIColor object representing the color Crimson, whose RBG values are (220, 20, 60), 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 darkLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 115.0/255.0, green: 79.0/255.0, blue: 150.0/255.0, alpha: alpha ) } + class func crimsonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 220.0/255.0, green: 20.0/255.0, blue: 60.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Liver, whose RBG values are (83, 75, 79), and has the specified opacity. + Returns a UIColor object representing the color Crimson Glory, whose RBG values are (190, 0, 50), 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 darkLiverColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 83.0/255.0, green: 75.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + class func crimsonGloryColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 190.0/255.0, green: 0.0/255.0, blue: 50.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Liver (Horses), whose RBG values are (84, 61, 55), and has the specified opacity. + Returns a UIColor object representing the color Crimson Red, whose RBG values are (153, 0, 0), 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 darkLiverHorsesColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 84.0/255.0, green: 61.0/255.0, blue: 55.0/255.0, alpha: alpha ) } + class func crimsonRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 153.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Magenta, whose RBG values are (139, 0, 139), and has the specified opacity. + Returns a UIColor object representing the color Cyan (Process), whose RBG values are (0, 183, 235), 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 darkMagentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 139.0/255.0, green: 0.0/255.0, blue: 139.0/255.0, alpha: alpha ) } + class func cyanProcessColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 183.0/255.0, blue: 235.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Medium Gray, whose RBG values are (169, 169, 169), and has the specified opacity. + Returns a UIColor object representing the color Cyan 100, whose RBG values are (178, 235, 242), 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 darkMediumGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 169.0/255.0, green: 169.0/255.0, blue: 169.0/255.0, alpha: alpha ) } + class func cyan100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 235.0/255.0, blue: 242.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Midnight Blue, whose RBG values are (0, 51, 102), and has the specified opacity. + Returns a UIColor object representing the color Cyan 200, whose RBG values are (128, 222, 234), 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 darkMidnightBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 51.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + class func cyan200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 222.0/255.0, blue: 234.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Moss Green, whose RBG values are (74, 93, 35), and has the specified opacity. + Returns a UIColor object representing the color Cyan 300, whose RBG values are (77, 208, 225), 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 darkMossGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 74.0/255.0, green: 93.0/255.0, blue: 35.0/255.0, alpha: alpha ) } + class func cyan300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 77.0/255.0, green: 208.0/255.0, blue: 225.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Olive Green, whose RBG values are (85, 107, 47), and has the specified opacity. + Returns a UIColor object representing the color Cyan 400, whose RBG values are (38, 198, 218), 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 darkOliveGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 85.0/255.0, green: 107.0/255.0, blue: 47.0/255.0, alpha: alpha ) } + class func cyan400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 38.0/255.0, green: 198.0/255.0, blue: 218.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Orange, whose RBG values are (255, 140, 0), and has the specified opacity. + Returns a UIColor object representing the color Cyan 50, whose RBG values are (224, 247, 250), 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 darkOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 140.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func cyan50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 224.0/255.0, green: 247.0/255.0, blue: 250.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Orchid, whose RBG values are (153, 50, 204), and has the specified opacity. + Returns a UIColor object representing the color Cyan 500, whose RBG values are (0, 188, 212), 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 darkOrchidColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 153.0/255.0, green: 50.0/255.0, blue: 204.0/255.0, alpha: alpha ) } + class func cyan500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 188.0/255.0, blue: 212.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Pastel Blue, whose RBG values are (119, 158, 203), and has the specified opacity. + Returns a UIColor object representing the color Cyan 600, whose RBG values are (0, 172, 193), 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 darkPastelBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 119.0/255.0, green: 158.0/255.0, blue: 203.0/255.0, alpha: alpha ) } + class func cyan600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 172.0/255.0, blue: 193.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Pastel Green, whose RBG values are (3, 192, 60), and has the specified opacity. + Returns a UIColor object representing the color Cyan 700, whose RBG values are (0, 151, 167), 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 darkPastelGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 3.0/255.0, green: 192.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + class func cyan700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 151.0/255.0, blue: 167.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Pastel Purple, whose RBG values are (150, 111, 214), and has the specified opacity. + Returns a UIColor object representing the color Cyan 800, whose RBG values are (0, 131, 143), 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 darkPastelPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 150.0/255.0, green: 111.0/255.0, blue: 214.0/255.0, alpha: alpha ) } + class func cyan800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 131.0/255.0, blue: 143.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Pastel Red, whose RBG values are (194, 59, 34), and has the specified opacity. + Returns a UIColor object representing the color Cyan 900, whose RBG values are (0, 96, 100), 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 darkPastelRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 194.0/255.0, green: 59.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + class func cyan900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 96.0/255.0, blue: 100.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Pink, whose RBG values are (231, 84, 128), and has the specified opacity. + Returns a UIColor object representing the color Cyan A100, whose RBG values are (132, 255, 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 darkPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 231.0/255.0, green: 84.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + class func cyanA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 132.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Powder Blue, whose RBG values are (0, 51, 153), and has the specified opacity. + Returns a UIColor object representing the color Cyan A200, whose RBG values are (24, 255, 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 darkPowderBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 51.0/255.0, blue: 153.0/255.0, alpha: alpha ) } + class func cyanA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 24.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Puce, whose RBG values are (79, 58, 60), and has the specified opacity. + Returns a UIColor object representing the color Cyan A400, whose RBG values are (0, 229, 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 darkPuceColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 79.0/255.0, green: 58.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + class func cyanA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 229.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Purple, whose RBG values are (48, 25, 52), and has the specified opacity. + Returns a UIColor object representing the color Cyan A700, whose RBG values are (0, 184, 212), 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 darkPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 48.0/255.0, green: 25.0/255.0, blue: 52.0/255.0, alpha: alpha ) } + class func cyanA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 184.0/255.0, blue: 212.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Raspberry, whose RBG values are (135, 38, 87), and has the specified opacity. + Returns a UIColor object representing the color Cyan Azure, whose RBG values are (78, 130, 180), 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 darkRaspberryColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 135.0/255.0, green: 38.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + class func cyanAzureColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 78.0/255.0, green: 130.0/255.0, blue: 180.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Red, whose RBG values are (139, 0, 0), and has the specified opacity. + Returns a UIColor object representing the color Cyan Cobalt Blue, whose RBG values are (40, 88, 156), 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 darkRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 139.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func cyanCobaltBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 40.0/255.0, green: 88.0/255.0, blue: 156.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Salmon, whose RBG values are (233, 150, 122), and has the specified opacity. + Returns a UIColor object representing the color Cyan Cornflower Blue, whose RBG values are (24, 139, 194), 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 darkSalmonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 233.0/255.0, green: 150.0/255.0, blue: 122.0/255.0, alpha: alpha ) } + class func cyanCornflowerBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 24.0/255.0, green: 139.0/255.0, blue: 194.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Scarlet, whose RBG values are (86, 3, 25), and has the specified opacity. + Returns a UIColor object representing the color Cyan-Blue Azure, whose RBG values are (70, 130, 191), 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 darkScarletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 86.0/255.0, green: 3.0/255.0, blue: 25.0/255.0, alpha: alpha ) } + class func cyanBlueAzureColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 70.0/255.0, green: 130.0/255.0, blue: 191.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Sea Green, whose RBG values are (143, 188, 143), and has the specified opacity. + Returns a UIColor object representing the color Cyber Grape, whose RBG values are (88, 66, 124), 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 darkSeaGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 143.0/255.0, green: 188.0/255.0, blue: 143.0/255.0, alpha: alpha ) } + class func cyberGrapeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 88.0/255.0, green: 66.0/255.0, blue: 124.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Sienna, whose RBG values are (60, 20, 20), and has the specified opacity. + Returns a UIColor object representing the color Cyber Yellow, whose RBG values are (255, 211, 0), 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 darkSiennaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 60.0/255.0, green: 20.0/255.0, blue: 20.0/255.0, alpha: alpha ) } + class func cyberYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 211.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Sky Blue, whose RBG values are (140, 190, 214), and has the specified opacity. + Returns a UIColor object representing the color Daffodil, whose RBG values are (255, 255, 49), 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 darkSkyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 140.0/255.0, green: 190.0/255.0, blue: 214.0/255.0, alpha: alpha ) } + class func daffodilColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 49.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Slate Blue, whose RBG values are (72, 61, 139), and has the specified opacity. + Returns a UIColor object representing the color Dandelion, whose RBG values are (240, 225, 48), 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 darkSlateBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 72.0/255.0, green: 61.0/255.0, blue: 139.0/255.0, alpha: alpha ) } + class func dandelionColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 225.0/255.0, blue: 48.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Slate Gray, whose RBG values are (47, 79, 79), and has the specified opacity. + Returns a UIColor object representing the color Dandelion (Crayola), whose RBG values are (253, 219, 109), 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 darkSlateGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 47.0/255.0, green: 79.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + class func dandelionCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 253.0/255.0, green: 219.0/255.0, blue: 109.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Spring Green, whose RBG values are (23, 114, 69), and has the specified opacity. + Returns a UIColor object representing the color Dark Blue, whose RBG values are (0, 0, 139), 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 darkSpringGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 23.0/255.0, green: 114.0/255.0, blue: 69.0/255.0, alpha: alpha ) } + class func darkBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 0.0/255.0, blue: 139.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Tan, whose RBG values are (145, 129, 81), and has the specified opacity. + Returns a UIColor object representing the color Dark Blue-Gray, whose RBG values are (102, 102, 153), 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 darkTanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 145.0/255.0, green: 129.0/255.0, blue: 81.0/255.0, alpha: alpha ) } + class func darkBlueGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 102.0/255.0, blue: 153.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Tangerine, whose RBG values are (255, 168, 18), and has the specified opacity. + Returns a UIColor object representing the color Dark Brown, whose RBG values are (101, 67, 33), 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 darkTangerineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 168.0/255.0, blue: 18.0/255.0, alpha: alpha ) } + class func darkBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 101.0/255.0, green: 67.0/255.0, blue: 33.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Taupe, whose RBG values are (72, 60, 50), and has the specified opacity. + Returns a UIColor object representing the color Dark Brown-Tangelo, whose RBG values are (136, 101, 78), 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 darkTaupeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 72.0/255.0, green: 60.0/255.0, blue: 50.0/255.0, alpha: alpha ) } + class func darkBrownTangeloColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 136.0/255.0, green: 101.0/255.0, blue: 78.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Terra Cotta, whose RBG values are (204, 78, 92), and has the specified opacity. + Returns a UIColor object representing the color Dark Byzantium, whose RBG values are (93, 57, 84), 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 darkTerraCottaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 78.0/255.0, blue: 92.0/255.0, alpha: alpha ) } + class func darkByzantiumColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 93.0/255.0, green: 57.0/255.0, blue: 84.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Turquoise, whose RBG values are (0, 206, 209), and has the specified opacity. + Returns a UIColor object representing the color Dark Candy Apple Red, whose RBG values are (164, 0, 0), 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 darkTurquoiseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 206.0/255.0, blue: 209.0/255.0, alpha: alpha ) } + class func darkCandyAppleRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 164.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Vanilla, whose RBG values are (209, 190, 168), and has the specified opacity. + Returns a UIColor object representing the color Dark Cerulean, whose RBG values are (8, 69, 126), 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 darkVanillaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 209.0/255.0, green: 190.0/255.0, blue: 168.0/255.0, alpha: alpha ) } + class func darkCeruleanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 8.0/255.0, green: 69.0/255.0, blue: 126.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Violet, whose RBG values are (148, 0, 211), and has the specified opacity. + Returns a UIColor object representing the color Dark Chestnut, whose RBG values are (152, 105, 96), 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 darkVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 148.0/255.0, green: 0.0/255.0, blue: 211.0/255.0, alpha: alpha ) } + class func darkChestnutColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 152.0/255.0, green: 105.0/255.0, blue: 96.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dark Yellow, whose RBG values are (155, 135, 12), and has the specified opacity. + Returns a UIColor object representing the color Dark Coral, whose RBG values are (205, 91, 69), 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 darkYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 155.0/255.0, green: 135.0/255.0, blue: 12.0/255.0, alpha: alpha ) } + class func darkCoralColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 205.0/255.0, green: 91.0/255.0, blue: 69.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dartmouth Green, whose RBG values are (0, 112, 60), and has the specified opacity. + Returns a UIColor object representing the color Dark Cyan, whose RBG values are (0, 139, 139), 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 dartmouthGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 112.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + class func darkCyanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 139.0/255.0, blue: 139.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Davy's Grey, whose RBG values are (85, 85, 85), and has the specified opacity. + Returns a UIColor object representing the color Dark Electric Blue, whose RBG values are (83, 104, 120), 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 davysGreyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 85.0/255.0, green: 85.0/255.0, blue: 85.0/255.0, alpha: alpha ) } + class func darkElectricBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 83.0/255.0, green: 104.0/255.0, blue: 120.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Debian Red, whose RBG values are (215, 10, 83), and has the specified opacity. + Returns a UIColor object representing the color Dark Goldenrod, whose RBG values are (184, 134, 11), 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 debianRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 215.0/255.0, green: 10.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + class func darkGoldenrodColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 184.0/255.0, green: 134.0/255.0, blue: 11.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Green, whose RBG values are (5, 102, 8), and has the specified opacity. + Returns a UIColor object representing the color Dark Gray (X11), whose RBG values are (169, 169, 169), 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 deepGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 5.0/255.0, green: 102.0/255.0, blue: 8.0/255.0, alpha: alpha ) } + class func darkGrayX11Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 169.0/255.0, green: 169.0/255.0, blue: 169.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Red, whose RBG values are (133, 1, 1), and has the specified opacity. + Returns a UIColor object representing the color Dark Green, whose RBG values are (1, 50, 32), 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 deepRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 133.0/255.0, green: 1.0/255.0, blue: 1.0/255.0, alpha: alpha ) } + class func darkGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 1.0/255.0, green: 50.0/255.0, blue: 32.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Space Sparkle, whose RBG values are (74, 100, 108), and has the specified opacity. + Returns a UIColor object representing the color Dark Green (X11), whose RBG values are (0, 100, 0), 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 deepSpaceSparkleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 74.0/255.0, green: 100.0/255.0, blue: 108.0/255.0, alpha: alpha ) } + class func darkGreenX11Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 100.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Taupe, whose RBG values are (126, 94, 96), and has the specified opacity. + Returns a UIColor object representing the color Dark Gunmetal, whose RBG values are (31, 38, 42), 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 deepTaupeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 126.0/255.0, green: 94.0/255.0, blue: 96.0/255.0, alpha: alpha ) } + class func darkGunmetalColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 31.0/255.0, green: 38.0/255.0, blue: 42.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Tuscan Red, whose RBG values are (102, 66, 77), and has the specified opacity. + Returns a UIColor object representing the color Dark Imperial Blue 1, whose RBG values are (0, 65, 106), 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 deepTuscanRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 102.0/255.0, green: 66.0/255.0, blue: 77.0/255.0, alpha: alpha ) } + class func darkImperialBlue1Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 65.0/255.0, blue: 106.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Aquamarine, whose RBG values are (64, 130, 109), and has the specified opacity. + Returns a UIColor object representing the color Dark Imperial Blue 2, whose RBG values are (0, 20, 126), 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 deepAquamarineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 64.0/255.0, green: 130.0/255.0, blue: 109.0/255.0, alpha: alpha ) } + class func darkImperialBlue2Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 20.0/255.0, blue: 126.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Carmine, whose RBG values are (169, 32, 62), and has the specified opacity. + Returns a UIColor object representing the color Dark Jungle Green, whose RBG values are (26, 36, 33), 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 deepCarmineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 169.0/255.0, green: 32.0/255.0, blue: 62.0/255.0, alpha: alpha ) } + class func darkJungleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 26.0/255.0, green: 36.0/255.0, blue: 33.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Carmine Pink, whose RBG values are (239, 48, 56), and has the specified opacity. + Returns a UIColor object representing the color Dark Khaki, whose RBG values are (189, 183, 107), 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 deepCarminePinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 239.0/255.0, green: 48.0/255.0, blue: 56.0/255.0, alpha: alpha ) } + class func darkKhakiColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 189.0/255.0, green: 183.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Carrot Orange, whose RBG values are (233, 105, 44), and has the specified opacity. + Returns a UIColor object representing the color Dark Lava, whose RBG values are (72, 60, 50), 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 deepCarrotOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 233.0/255.0, green: 105.0/255.0, blue: 44.0/255.0, alpha: alpha ) } + class func darkLavaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 72.0/255.0, green: 60.0/255.0, blue: 50.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Cerise, whose RBG values are (218, 50, 135), and has the specified opacity. + Returns a UIColor object representing the color Dark Lavender, whose RBG values are (115, 79, 150), 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 deepCeriseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 218.0/255.0, green: 50.0/255.0, blue: 135.0/255.0, alpha: alpha ) } + class func darkLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 115.0/255.0, green: 79.0/255.0, blue: 150.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Champagne, whose RBG values are (250, 214, 165), and has the specified opacity. + Returns a UIColor object representing the color Dark Liver, whose RBG values are (83, 75, 79), 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 deepChampagneColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 250.0/255.0, green: 214.0/255.0, blue: 165.0/255.0, alpha: alpha ) } + class func darkLiverColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 83.0/255.0, green: 75.0/255.0, blue: 79.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Chestnut, whose RBG values are (185, 78, 72), and has the specified opacity. + Returns a UIColor object representing the color Dark Liver (Horses), whose RBG values are (84, 61, 55), 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 deepChestnutColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 185.0/255.0, green: 78.0/255.0, blue: 72.0/255.0, alpha: alpha ) } + class func darkLiverHorsesColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 84.0/255.0, green: 61.0/255.0, blue: 55.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Coffee, whose RBG values are (112, 66, 65), and has the specified opacity. + Returns a UIColor object representing the color Dark Magenta, whose RBG values are (139, 0, 139), 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 deepCoffeeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 112.0/255.0, green: 66.0/255.0, blue: 65.0/255.0, alpha: alpha ) } + class func darkMagentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 139.0/255.0, green: 0.0/255.0, blue: 139.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Fuchsia, whose RBG values are (193, 84, 193), and has the specified opacity. + Returns a UIColor object representing the color Dark Medium Gray, whose RBG values are (169, 169, 169), 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 deepFuchsiaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 193.0/255.0, green: 84.0/255.0, blue: 193.0/255.0, alpha: alpha ) } + class func darkMediumGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 169.0/255.0, green: 169.0/255.0, blue: 169.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Green-Cyan Turquoise, whose RBG values are (14, 124, 97), and has the specified opacity. + Returns a UIColor object representing the color Dark Midnight Blue, whose RBG values are (0, 51, 102), 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 deepGreenCyanTurquoiseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 14.0/255.0, green: 124.0/255.0, blue: 97.0/255.0, alpha: alpha ) } + class func darkMidnightBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 51.0/255.0, blue: 102.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Jungle Green, whose RBG values are (0, 75, 73), and has the specified opacity. + Returns a UIColor object representing the color Dark Moss Green, whose RBG values are (74, 93, 35), 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 deepJungleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 75.0/255.0, blue: 73.0/255.0, alpha: alpha ) } + class func darkMossGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 74.0/255.0, green: 93.0/255.0, blue: 35.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Koamaru, whose RBG values are (51, 51, 102), and has the specified opacity. + Returns a UIColor object representing the color Dark Olive Green, whose RBG values are (85, 107, 47), 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 deepKoamaruColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 51.0/255.0, green: 51.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + class func darkOliveGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 85.0/255.0, green: 107.0/255.0, blue: 47.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Lemon, whose RBG values are (245, 199, 26), and has the specified opacity. + Returns a UIColor object representing the color Dark Orange, whose RBG values are (255, 140, 0), 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 deepLemonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 245.0/255.0, green: 199.0/255.0, blue: 26.0/255.0, alpha: alpha ) } + class func darkOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 140.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Lilac, whose RBG values are (153, 85, 187), and has the specified opacity. + Returns a UIColor object representing the color Dark Orchid, whose RBG values are (153, 50, 204), 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 deepLilacColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 153.0/255.0, green: 85.0/255.0, blue: 187.0/255.0, alpha: alpha ) } + class func darkOrchidColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 153.0/255.0, green: 50.0/255.0, blue: 204.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Magenta, whose RBG values are (204, 0, 204), and has the specified opacity. + Returns a UIColor object representing the color Dark Pastel Blue, whose RBG values are (119, 158, 203), 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 deepMagentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 0.0/255.0, blue: 204.0/255.0, alpha: alpha ) } + class func darkPastelBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 119.0/255.0, green: 158.0/255.0, blue: 203.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Pastel Green, whose RBG values are (3, 192, 60), 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 darkPastelGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 3.0/255.0, green: 192.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Pastel Purple, whose RBG values are (150, 111, 214), 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 darkPastelPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 150.0/255.0, green: 111.0/255.0, blue: 214.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Pastel Red, whose RBG values are (194, 59, 34), 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 darkPastelRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 194.0/255.0, green: 59.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Pink, whose RBG values are (231, 84, 128), 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 darkPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 231.0/255.0, green: 84.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Powder Blue, whose RBG values are (0, 51, 153), 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 darkPowderBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 51.0/255.0, blue: 153.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Puce, whose RBG values are (79, 58, 60), 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 darkPuceColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 79.0/255.0, green: 58.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Purple, whose RBG values are (48, 25, 52), 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 darkPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 48.0/255.0, green: 25.0/255.0, blue: 52.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Raspberry, whose RBG values are (135, 38, 87), 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 darkRaspberryColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 135.0/255.0, green: 38.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Red, whose RBG values are (139, 0, 0), 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 darkRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 139.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Salmon, whose RBG values are (233, 150, 122), 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 darkSalmonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 233.0/255.0, green: 150.0/255.0, blue: 122.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Scarlet, whose RBG values are (86, 3, 25), 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 darkScarletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 86.0/255.0, green: 3.0/255.0, blue: 25.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Sea Green, whose RBG values are (143, 188, 143), 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 darkSeaGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 143.0/255.0, green: 188.0/255.0, blue: 143.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Sienna, whose RBG values are (60, 20, 20), 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 darkSiennaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 60.0/255.0, green: 20.0/255.0, blue: 20.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Sky Blue, whose RBG values are (140, 190, 214), 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 darkSkyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 140.0/255.0, green: 190.0/255.0, blue: 214.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Slate Blue, whose RBG values are (72, 61, 139), 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 darkSlateBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 72.0/255.0, green: 61.0/255.0, blue: 139.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Slate Gray, whose RBG values are (47, 79, 79), 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 darkSlateGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 47.0/255.0, green: 79.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Spring Green, whose RBG values are (23, 114, 69), 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 darkSpringGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 23.0/255.0, green: 114.0/255.0, blue: 69.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Tan, whose RBG values are (145, 129, 81), 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 darkTanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 145.0/255.0, green: 129.0/255.0, blue: 81.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Tangerine, whose RBG values are (255, 168, 18), 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 darkTangerineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 168.0/255.0, blue: 18.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Taupe, whose RBG values are (72, 60, 50), 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 darkTaupeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 72.0/255.0, green: 60.0/255.0, blue: 50.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Terra Cotta, whose RBG values are (204, 78, 92), 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 darkTerraCottaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 78.0/255.0, blue: 92.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Turquoise, whose RBG values are (0, 206, 209), 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 darkTurquoiseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 206.0/255.0, blue: 209.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Vanilla, whose RBG values are (209, 190, 168), 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 darkVanillaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 209.0/255.0, green: 190.0/255.0, blue: 168.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Violet, whose RBG values are (148, 0, 211), 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 darkVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 148.0/255.0, green: 0.0/255.0, blue: 211.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dark Yellow, whose RBG values are (155, 135, 12), 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 darkYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 155.0/255.0, green: 135.0/255.0, blue: 12.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dartmouth Green, whose RBG values are (0, 112, 60), 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 dartmouthGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 112.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Davy's Grey, whose RBG values are (85, 85, 85), 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 davysGreyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 85.0/255.0, green: 85.0/255.0, blue: 85.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Debian Red, whose RBG values are (215, 10, 83), 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 debianRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 215.0/255.0, green: 10.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Green, whose RBG values are (5, 102, 8), 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 deepGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 5.0/255.0, green: 102.0/255.0, blue: 8.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 100, whose RBG values are (255, 204, 188), 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 deepOrange100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 204.0/255.0, blue: 188.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 200, whose RBG values are (255, 171, 145), 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 deepOrange200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 171.0/255.0, blue: 145.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 300, whose RBG values are (255, 138, 101), 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 deepOrange300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 138.0/255.0, blue: 101.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 400, whose RBG values are (255, 112, 67), 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 deepOrange400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 112.0/255.0, blue: 67.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 50, whose RBG values are (251, 233, 231), 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 deepOrange50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 233.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 500, whose RBG values are (255, 87, 34), 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 deepOrange500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 87.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 600, whose RBG values are (244, 81, 30), 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 deepOrange600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 81.0/255.0, blue: 30.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 700, whose RBG values are (230, 74, 25), 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 deepOrange700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 74.0/255.0, blue: 25.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 800, whose RBG values are (216, 67, 21), 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 deepOrange800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 216.0/255.0, green: 67.0/255.0, blue: 21.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 900, whose RBG values are (191, 54, 12), 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 deepOrange900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 191.0/255.0, green: 54.0/255.0, blue: 12.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange A100, whose RBG values are (255, 158, 128), 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 deepOrangeA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 158.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange A200, whose RBG values are (255, 110, 64), 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 deepOrangeA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 110.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange A400, whose RBG values are (255, 61, 0), 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 deepOrangeA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 61.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange A700, whose RBG values are (221, 44, 0), 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 deepOrangeA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 221.0/255.0, green: 44.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 100, whose RBG values are (209, 196, 233), 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 deepPurple100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 209.0/255.0, green: 196.0/255.0, blue: 233.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 200, whose RBG values are (179, 157, 219), 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 deepPurple200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 179.0/255.0, green: 157.0/255.0, blue: 219.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 300, whose RBG values are (149, 117, 205), 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 deepPurple300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 149.0/255.0, green: 117.0/255.0, blue: 205.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 400, whose RBG values are (126, 87, 194), 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 deepPurple400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 126.0/255.0, green: 87.0/255.0, blue: 194.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 50, whose RBG values are (237, 231, 246), 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 deepPurple50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 237.0/255.0, green: 231.0/255.0, blue: 246.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 500, whose RBG values are (103, 58, 183), 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 deepPurple500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 103.0/255.0, green: 58.0/255.0, blue: 183.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 600, whose RBG values are (94, 53, 177), 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 deepPurple600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 94.0/255.0, green: 53.0/255.0, blue: 177.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 700, whose RBG values are (81, 45, 168), 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 deepPurple700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 81.0/255.0, green: 45.0/255.0, blue: 168.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 800, whose RBG values are (69, 39, 160), 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 deepPurple800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 69.0/255.0, green: 39.0/255.0, blue: 160.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 900, whose RBG values are (49, 27, 146), 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 deepPurple900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 49.0/255.0, green: 27.0/255.0, blue: 146.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple A100, whose RBG values are (179, 136, 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 deepPurpleA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 179.0/255.0, green: 136.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple A200, whose RBG values are (124, 77, 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 deepPurpleA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 124.0/255.0, green: 77.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple A400, whose RBG values are (101, 31, 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 deepPurpleA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 101.0/255.0, green: 31.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple A700, whose RBG values are (98, 0, 234), 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 deepPurpleA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 98.0/255.0, green: 0.0/255.0, blue: 234.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Red, whose RBG values are (133, 1, 1), 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 deepRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 133.0/255.0, green: 1.0/255.0, blue: 1.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Space Sparkle, whose RBG values are (74, 100, 108), 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 deepSpaceSparkleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 74.0/255.0, green: 100.0/255.0, blue: 108.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Taupe, whose RBG values are (126, 94, 96), 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 deepTaupeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 126.0/255.0, green: 94.0/255.0, blue: 96.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Tuscan Red, whose RBG values are (102, 66, 77), 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 deepTuscanRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 66.0/255.0, blue: 77.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Aquamarine, whose RBG values are (64, 130, 109), 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 deepAquamarineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 64.0/255.0, green: 130.0/255.0, blue: 109.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Carmine, whose RBG values are (169, 32, 62), 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 deepCarmineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 169.0/255.0, green: 32.0/255.0, blue: 62.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Carmine Pink, whose RBG values are (239, 48, 56), 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 deepCarminePinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 48.0/255.0, blue: 56.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Carrot Orange, whose RBG values are (233, 105, 44), 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 deepCarrotOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 233.0/255.0, green: 105.0/255.0, blue: 44.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Cerise, whose RBG values are (218, 50, 135), 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 deepCeriseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 218.0/255.0, green: 50.0/255.0, blue: 135.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Champagne, whose RBG values are (250, 214, 165), 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 deepChampagneColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 250.0/255.0, green: 214.0/255.0, blue: 165.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Chestnut, whose RBG values are (185, 78, 72), 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 deepChestnutColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 185.0/255.0, green: 78.0/255.0, blue: 72.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Coffee, whose RBG values are (112, 66, 65), 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 deepCoffeeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 112.0/255.0, green: 66.0/255.0, blue: 65.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Fuchsia, whose RBG values are (193, 84, 193), 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 deepFuchsiaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 193.0/255.0, green: 84.0/255.0, blue: 193.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Green-Cyan Turquoise, whose RBG values are (14, 124, 97), 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 deepGreenCyanTurquoiseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 14.0/255.0, green: 124.0/255.0, blue: 97.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Jungle Green, whose RBG values are (0, 75, 73), 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 deepJungleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 75.0/255.0, blue: 73.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Koamaru, whose RBG values are (51, 51, 102), 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 deepKoamaruColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 51.0/255.0, green: 51.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Lemon, whose RBG values are (245, 199, 26), 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 deepLemonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 245.0/255.0, green: 199.0/255.0, blue: 26.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Lilac, whose RBG values are (153, 85, 187), 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 deepLilacColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 153.0/255.0, green: 85.0/255.0, blue: 187.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Magenta, whose RBG values are (204, 0, 204), 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 deepMagentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 0.0/255.0, blue: 204.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Maroon, whose RBG values are (130, 0, 0), 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 deepMaroonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 130.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Mauve, whose RBG values are (212, 115, 212), 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 deepMauveColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 212.0/255.0, green: 115.0/255.0, blue: 212.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Moss Green, whose RBG values are (53, 94, 59), 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 deepMossGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 53.0/255.0, green: 94.0/255.0, blue: 59.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Peach, whose RBG values are (255, 203, 164), 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 deepPeachColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 203.0/255.0, blue: 164.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Pink, whose RBG values are (255, 20, 147), 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 deepPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 20.0/255.0, blue: 147.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Puce, whose RBG values are (169, 92, 104), 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 deepPuceColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 169.0/255.0, green: 92.0/255.0, blue: 104.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Ruby, whose RBG values are (132, 63, 91), 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 deepRubyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 132.0/255.0, green: 63.0/255.0, blue: 91.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Saffron, whose RBG values are (255, 153, 51), 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 deepSaffronColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 153.0/255.0, blue: 51.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Sky Blue, whose RBG values are (0, 191, 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 deepSkyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 191.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Spring Bud, whose RBG values are (85, 107, 47), 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 deepSpringBudColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 85.0/255.0, green: 107.0/255.0, blue: 47.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Violet, whose RBG values are (51, 0, 102), 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 deepVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 51.0/255.0, green: 0.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deer, whose RBG values are (186, 135, 89), 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 deerColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 186.0/255.0, green: 135.0/255.0, blue: 89.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Denim, whose RBG values are (21, 96, 189), 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 denimColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 21.0/255.0, green: 96.0/255.0, blue: 189.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Denim (Crayola), whose RBG values are (43, 108, 196), 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 denimCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 43.0/255.0, green: 108.0/255.0, blue: 196.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Desaturated Cyan, whose RBG values are (102, 153, 153), 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 desaturatedCyanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Desert, whose RBG values are (193, 154, 107), 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 desertColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 193.0/255.0, green: 154.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Desert Sand (Crayola), whose RBG values are (239, 205, 184), 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 desertSandCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 205.0/255.0, blue: 184.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Desert Sand, whose RBG values are (237, 201, 175), 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 desertSandColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 237.0/255.0, green: 201.0/255.0, blue: 175.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Desire, whose RBG values are (234, 60, 83), 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 desireColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 234.0/255.0, green: 60.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Diamond, whose RBG values are (185, 242, 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 diamondColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 185.0/255.0, green: 242.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dim Gray, whose RBG values are (105, 105, 105), 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 dimGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 105.0/255.0, green: 105.0/255.0, blue: 105.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dirt, whose RBG values are (155, 118, 83), 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 dirtColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 155.0/255.0, green: 118.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dodger Blue, whose RBG values are (30, 144, 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 dodgerBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 30.0/255.0, green: 144.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dogwood Rose, whose RBG values are (215, 24, 104), 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 dogwoodRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 215.0/255.0, green: 24.0/255.0, blue: 104.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dollar Bill, whose RBG values are (133, 187, 101), 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 dollarBillColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 133.0/255.0, green: 187.0/255.0, blue: 101.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Donkey Brown, whose RBG values are (102, 76, 40), 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 donkeyBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 76.0/255.0, blue: 40.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Drab, whose RBG values are (150, 113, 23), 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 drabColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 150.0/255.0, green: 113.0/255.0, blue: 23.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Duke Blue, whose RBG values are (0, 0, 156), 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 dukeBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 0.0/255.0, blue: 156.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dust Storm, whose RBG values are (229, 204, 201), 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 dustStormColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 229.0/255.0, green: 204.0/255.0, blue: 201.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Dutch White, whose RBG values are (239, 223, 187), 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 dutchWhiteColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 223.0/255.0, blue: 187.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Eagle Green, whose RBG values are (0, 73, 83), 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 eagleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 73.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Earth Yellow, whose RBG values are (225, 169, 95), 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 earthYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 225.0/255.0, green: 169.0/255.0, blue: 95.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Ebony, whose RBG values are (85, 93, 80), 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 ebonyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 85.0/255.0, green: 93.0/255.0, blue: 80.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Ecru, whose RBG values are (194, 178, 128), 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 ecruColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 194.0/255.0, green: 178.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Eerie Black, whose RBG values are (27, 27, 27), 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 eerieBlackColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 27.0/255.0, green: 27.0/255.0, blue: 27.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Eggplant, whose RBG values are (97, 64, 81), 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 eggplantColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 97.0/255.0, green: 64.0/255.0, blue: 81.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Eggplant (Crayola), whose RBG values are (110, 81, 96), 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 eggplantCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 110.0/255.0, green: 81.0/255.0, blue: 96.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Eggshell, whose RBG values are (240, 234, 214), 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 eggshellColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 234.0/255.0, blue: 214.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Egyptian Blue, whose RBG values are (16, 52, 166), 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 egyptianBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 16.0/255.0, green: 52.0/255.0, blue: 166.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Lime (Crayola), whose RBG values are (206, 255, 29), 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 electricLimeCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 206.0/255.0, green: 255.0/255.0, blue: 29.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Blue, whose RBG values are (125, 249, 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 electricBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 125.0/255.0, green: 249.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Crimson, whose RBG values are (255, 0, 63), 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 electricCrimsonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 63.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Cyan, whose RBG values are (0, 255, 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 electricCyanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Green, whose RBG values are (0, 255, 0), 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 electricGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Indigo, whose RBG values are (111, 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 electricIndigoColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 111.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Lavender, whose RBG values are (244, 187, 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 electricLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 187.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Lime, whose RBG values are (204, 255, 0), 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 electricLimeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Purple, whose RBG values are (191, 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 electricPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 191.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Ultramarine, whose RBG values are (63, 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 electricUltramarineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 63.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Violet, whose RBG values are (143, 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 electricVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 143.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Electric Yellow, whose RBG values are (255, 255, 51), 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 electricYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 51.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Emerald, whose RBG values are (80, 200, 120), 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 emeraldColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 80.0/255.0, green: 200.0/255.0, blue: 120.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Eminence, whose RBG values are (108, 48, 130), 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 eminenceColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 108.0/255.0, green: 48.0/255.0, blue: 130.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color English Green, whose RBG values are (27, 77, 62), 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 englishGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 27.0/255.0, green: 77.0/255.0, blue: 62.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color English Lavender, whose RBG values are (180, 131, 149), 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 englishLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 180.0/255.0, green: 131.0/255.0, blue: 149.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color English Red, whose RBG values are (171, 75, 82), 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 englishRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 171.0/255.0, green: 75.0/255.0, blue: 82.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color English Violet, whose RBG values are (86, 60, 92), 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 englishVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 86.0/255.0, green: 60.0/255.0, blue: 92.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Eton Blue, whose RBG values are (150, 200, 162), 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 etonBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 150.0/255.0, green: 200.0/255.0, blue: 162.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Maroon, whose RBG values are (130, 0, 0), and has the specified opacity. + Returns a UIColor object representing the color Eucalyptus, whose RBG values are (68, 215, 168), 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 deepMaroonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 130.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func eucalyptusColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 68.0/255.0, green: 215.0/255.0, blue: 168.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Mauve, whose RBG values are (212, 115, 212), and has the specified opacity. + Returns a UIColor object representing the color Fallow, whose RBG values are (193, 154, 107), 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 deepMauveColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 212.0/255.0, green: 115.0/255.0, blue: 212.0/255.0, alpha: alpha ) } + class func fallowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 193.0/255.0, green: 154.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Moss Green, whose RBG values are (53, 94, 59), and has the specified opacity. + Returns a UIColor object representing the color Falu Red, whose RBG values are (128, 24, 24), 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 deepMossGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 53.0/255.0, green: 94.0/255.0, blue: 59.0/255.0, alpha: alpha ) } + class func faluRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 24.0/255.0, blue: 24.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Peach, whose RBG values are (255, 203, 164), and has the specified opacity. + Returns a UIColor object representing the color Fandango, whose RBG values are (181, 51, 137), 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 deepPeachColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 203.0/255.0, blue: 164.0/255.0, alpha: alpha ) } + class func fandangoColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 181.0/255.0, green: 51.0/255.0, blue: 137.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Pink, whose RBG values are (255, 20, 147), and has the specified opacity. + Returns a UIColor object representing the color Fandango Pink, whose RBG values are (222, 82, 133), 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 deepPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 20.0/255.0, blue: 147.0/255.0, alpha: alpha ) } + class func fandangoPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 222.0/255.0, green: 82.0/255.0, blue: 133.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Puce, whose RBG values are (169, 92, 104), and has the specified opacity. + Returns a UIColor object representing the color Fashion Fuchsia, whose RBG values are (244, 0, 161), 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 deepPuceColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 169.0/255.0, green: 92.0/255.0, blue: 104.0/255.0, alpha: alpha ) } + class func fashionFuchsiaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 0.0/255.0, blue: 161.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Ruby, whose RBG values are (132, 63, 91), and has the specified opacity. + Returns a UIColor object representing the color Fawn, whose RBG values are (229, 170, 112), 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 deepRubyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 132.0/255.0, green: 63.0/255.0, blue: 91.0/255.0, alpha: alpha ) } + class func fawnColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 229.0/255.0, green: 170.0/255.0, blue: 112.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Saffron, whose RBG values are (255, 153, 51), and has the specified opacity. + Returns a UIColor object representing the color Feldgrau, whose RBG values are (77, 93, 83), 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 deepSaffronColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 153.0/255.0, blue: 51.0/255.0, alpha: alpha ) } + class func feldgrauColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 77.0/255.0, green: 93.0/255.0, blue: 83.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Sky Blue, whose RBG values are (0, 191, 255), and has the specified opacity. + Returns a UIColor object representing the color Feldspar, whose RBG values are (253, 213, 177), 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 deepSkyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 191.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func feldsparColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 253.0/255.0, green: 213.0/255.0, blue: 177.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Spring Bud, whose RBG values are (85, 107, 47), and has the specified opacity. + Returns a UIColor object representing the color Fern (Crayola), whose RBG values are (113, 188, 120), 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 deepSpringBudColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 85.0/255.0, green: 107.0/255.0, blue: 47.0/255.0, alpha: alpha ) } + class func fernCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 113.0/255.0, green: 188.0/255.0, blue: 120.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deep Violet, whose RBG values are (51, 0, 102), and has the specified opacity. + Returns a UIColor object representing the color Fern Green, whose RBG values are (79, 121, 66), 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 deepVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 51.0/255.0, green: 0.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + class func fernGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 79.0/255.0, green: 121.0/255.0, blue: 66.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Deer, whose RBG values are (186, 135, 89), and has the specified opacity. + Returns a UIColor object representing the color Ferrari Red, whose RBG values are (255, 40, 0), 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 deerColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 186.0/255.0, green: 135.0/255.0, blue: 89.0/255.0, alpha: alpha ) } + class func ferrariRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 40.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Denim, whose RBG values are (21, 96, 189), and has the specified opacity. + Returns a UIColor object representing the color Field Drab, whose RBG values are (108, 84, 30), 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 denimColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 21.0/255.0, green: 96.0/255.0, blue: 189.0/255.0, alpha: alpha ) } + class func fieldDrabColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 108.0/255.0, green: 84.0/255.0, blue: 30.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Denim (Crayola), whose RBG values are (43, 108, 196), and has the specified opacity. + Returns a UIColor object representing the color Fire Engine Red, whose RBG values are (206, 32, 41), 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 denimCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 43.0/255.0, green: 108.0/255.0, blue: 196.0/255.0, alpha: alpha ) } + class func fireEngineRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 206.0/255.0, green: 32.0/255.0, blue: 41.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Desaturated Cyan, whose RBG values are (102, 153, 153), and has the specified opacity. + Returns a UIColor object representing the color Firebrick, whose RBG values are (178, 34, 34), 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 desaturatedCyanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 102.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: alpha ) } + class func firebrickColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 34.0/255.0, blue: 34.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Desert, whose RBG values are (193, 154, 107), and has the specified opacity. + Returns a UIColor object representing the color Flame, whose RBG values are (226, 88, 34), 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 desertColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 193.0/255.0, green: 154.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func flameColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 226.0/255.0, green: 88.0/255.0, blue: 34.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Desert Sand (Crayola), whose RBG values are (239, 205, 184), and has the specified opacity. + Returns a UIColor object representing the color Flamingo Pink, whose RBG values are (252, 142, 172), 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 desertSandCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 239.0/255.0, green: 205.0/255.0, blue: 184.0/255.0, alpha: alpha ) } + class func flamingoPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 252.0/255.0, green: 142.0/255.0, blue: 172.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Desert Sand, whose RBG values are (237, 201, 175), and has the specified opacity. + Returns a UIColor object representing the color Flattery, whose RBG values are (107, 68, 35), 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 desertSandColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 237.0/255.0, green: 201.0/255.0, blue: 175.0/255.0, alpha: alpha ) } + class func flatteryColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 107.0/255.0, green: 68.0/255.0, blue: 35.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Desire, whose RBG values are (234, 60, 83), and has the specified opacity. + Returns a UIColor object representing the color Flavescent, whose RBG values are (247, 233, 142), 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 desireColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 234.0/255.0, green: 60.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + class func flavescentColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 247.0/255.0, green: 233.0/255.0, blue: 142.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Diamond, whose RBG values are (185, 242, 255), and has the specified opacity. + Returns a UIColor object representing the color Flax, whose RBG values are (238, 220, 130), 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 diamondColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 185.0/255.0, green: 242.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func flaxColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 238.0/255.0, green: 220.0/255.0, blue: 130.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dim Gray, whose RBG values are (105, 105, 105), and has the specified opacity. + Returns a UIColor object representing the color Flirt, whose RBG values are (162, 0, 109), 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 dimGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 105.0/255.0, green: 105.0/255.0, blue: 105.0/255.0, alpha: alpha ) } + class func flirtColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 162.0/255.0, green: 0.0/255.0, blue: 109.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dirt, whose RBG values are (155, 118, 83), and has the specified opacity. + Returns a UIColor object representing the color Floral White, whose RBG values are (255, 250, 240), 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 dirtColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 155.0/255.0, green: 118.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + class func floralWhiteColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 250.0/255.0, blue: 240.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dodger Blue, whose RBG values are (30, 144, 255), and has the specified opacity. + Returns a UIColor object representing the color Fluorescent Orange, whose RBG values are (255, 191, 0), 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 dodgerBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 30.0/255.0, green: 144.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func fluorescentOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 191.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dogwood Rose, whose RBG values are (215, 24, 104), and has the specified opacity. + Returns a UIColor object representing the color Fluorescent Pink, whose RBG values are (255, 20, 147), 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 dogwoodRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 215.0/255.0, green: 24.0/255.0, blue: 104.0/255.0, alpha: alpha ) } + class func fluorescentPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 20.0/255.0, blue: 147.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dollar Bill, whose RBG values are (133, 187, 101), and has the specified opacity. + Returns a UIColor object representing the color Fluorescent Yellow, whose RBG values are (204, 255, 0), 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 dollarBillColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 133.0/255.0, green: 187.0/255.0, blue: 101.0/255.0, alpha: alpha ) } + class func fluorescentYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Donkey Brown, whose RBG values are (102, 76, 40), and has the specified opacity. + Returns a UIColor object representing the color Folly, whose RBG values are (255, 0, 79), 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 donkeyBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 102.0/255.0, green: 76.0/255.0, blue: 40.0/255.0, alpha: alpha ) } + class func follyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 79.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Drab, whose RBG values are (150, 113, 23), and has the specified opacity. + Returns a UIColor object representing the color Forest Green (Crayola), whose RBG values are (109, 174, 129), 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 forestGreenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 109.0/255.0, green: 174.0/255.0, blue: 129.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Forest Green (Traditional), whose RBG values are (1, 68, 33), 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 forestGreenTraditionalColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 1.0/255.0, green: 68.0/255.0, blue: 33.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Forest Green (Web), whose RBG values are (34, 139, 34), 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 forestGreenWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 34.0/255.0, green: 139.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color French Beige, whose RBG values are (166, 123, 91), 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 frenchBeigeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 166.0/255.0, green: 123.0/255.0, blue: 91.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color French Bistre, whose RBG values are (133, 109, 77), 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 frenchBistreColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 133.0/255.0, green: 109.0/255.0, blue: 77.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color French Blue, whose RBG values are (0, 114, 187), 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 frenchBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 114.0/255.0, blue: 187.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color French Fuchsia, whose RBG values are (253, 63, 146), 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 frenchFuchsiaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 253.0/255.0, green: 63.0/255.0, blue: 146.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color French Lilac, whose RBG values are (134, 96, 142), 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 frenchLilacColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 134.0/255.0, green: 96.0/255.0, blue: 142.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color French Lime, whose RBG values are (158, 253, 56), 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 drabColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 150.0/255.0, green: 113.0/255.0, blue: 23.0/255.0, alpha: alpha ) } + class func frenchLimeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 158.0/255.0, green: 253.0/255.0, blue: 56.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Duke Blue, whose RBG values are (0, 0, 156), and has the specified opacity. + Returns a UIColor object representing the color French Mauve, whose RBG values are (212, 115, 212), 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 dukeBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 0.0/255.0, blue: 156.0/255.0, alpha: alpha ) } + class func frenchMauveColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 212.0/255.0, green: 115.0/255.0, blue: 212.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dust Storm, whose RBG values are (229, 204, 201), and has the specified opacity. + Returns a UIColor object representing the color French Pink, whose RBG values are (253, 108, 158), 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 dustStormColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 229.0/255.0, green: 204.0/255.0, blue: 201.0/255.0, alpha: alpha ) } + class func frenchPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 253.0/255.0, green: 108.0/255.0, blue: 158.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Dutch White, whose RBG values are (239, 223, 187), and has the specified opacity. + Returns a UIColor object representing the color French Plum, whose RBG values are (129, 20, 83), 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 dutchWhiteColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 239.0/255.0, green: 223.0/255.0, blue: 187.0/255.0, alpha: alpha ) } + class func frenchPlumColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 129.0/255.0, green: 20.0/255.0, blue: 83.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Eagle Green, whose RBG values are (0, 73, 83), and has the specified opacity. + Returns a UIColor object representing the color French Puce, whose RBG values are (78, 22, 9), 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 eagleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 73.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + class func frenchPuceColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 78.0/255.0, green: 22.0/255.0, blue: 9.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Earth Yellow, whose RBG values are (225, 169, 95), and has the specified opacity. + Returns a UIColor object representing the color French Raspberry, whose RBG values are (199, 44, 72), 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 earthYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 225.0/255.0, green: 169.0/255.0, blue: 95.0/255.0, alpha: alpha ) } + class func frenchRaspberryColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 199.0/255.0, green: 44.0/255.0, blue: 72.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Ebony, whose RBG values are (85, 93, 80), and has the specified opacity. + Returns a UIColor object representing the color French Rose, whose RBG values are (246, 74, 138), 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 ebonyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 85.0/255.0, green: 93.0/255.0, blue: 80.0/255.0, alpha: alpha ) } + class func frenchRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 246.0/255.0, green: 74.0/255.0, blue: 138.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Ecru, whose RBG values are (194, 178, 128), and has the specified opacity. + Returns a UIColor object representing the color French Sky Blue, whose RBG values are (119, 181, 254), 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 ecruColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 194.0/255.0, green: 178.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + class func frenchSkyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 119.0/255.0, green: 181.0/255.0, blue: 254.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Eerie Black, whose RBG values are (27, 27, 27), and has the specified opacity. + Returns a UIColor object representing the color French Violet, whose RBG values are (136, 6, 206), 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 eerieBlackColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 27.0/255.0, green: 27.0/255.0, blue: 27.0/255.0, alpha: alpha ) } + class func frenchVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 136.0/255.0, green: 6.0/255.0, blue: 206.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Eggplant, whose RBG values are (97, 64, 81), and has the specified opacity. + Returns a UIColor object representing the color French Wine, whose RBG values are (172, 30, 68), 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 eggplantColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 97.0/255.0, green: 64.0/255.0, blue: 81.0/255.0, alpha: alpha ) } + class func frenchWineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 172.0/255.0, green: 30.0/255.0, blue: 68.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Eggplant (Crayola), whose RBG values are (110, 81, 96), and has the specified opacity. + Returns a UIColor object representing the color Fresh Air, whose RBG values are (166, 231, 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 eggplantCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 110.0/255.0, green: 81.0/255.0, blue: 96.0/255.0, alpha: alpha ) } + class func freshAirColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 166.0/255.0, green: 231.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Eggshell, whose RBG values are (240, 234, 214), and has the specified opacity. + Returns a UIColor object representing the color Fuchsia, 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 eggshellColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 240.0/255.0, green: 234.0/255.0, blue: 214.0/255.0, alpha: alpha ) } + class func fuchsiaColor ( 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 UIColor object representing the color Egyptian Blue, whose RBG values are (16, 52, 166), and has the specified opacity. + Returns a UIColor object representing the color Fuchsia (Crayola), whose RBG values are (195, 100, 197), 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 egyptianBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 16.0/255.0, green: 52.0/255.0, blue: 166.0/255.0, alpha: alpha ) } + class func fuchsiaCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 195.0/255.0, green: 100.0/255.0, blue: 197.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Lime (Crayola), whose RBG values are (206, 255, 29), and has the specified opacity. + Returns a UIColor object representing the color Fuchsia Pink, whose RBG values are (255, 119, 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 electricLimeCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 206.0/255.0, green: 255.0/255.0, blue: 29.0/255.0, alpha: alpha ) } + class func fuchsiaPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 119.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Blue, whose RBG values are (125, 249, 255), and has the specified opacity. + Returns a UIColor object representing the color Fuchsia Purple, whose RBG values are (204, 57, 123), 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 electricBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 125.0/255.0, green: 249.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func fuchsiaPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 57.0/255.0, blue: 123.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Crimson, whose RBG values are (255, 0, 63), and has the specified opacity. + Returns a UIColor object representing the color Fuchsia Rose, whose RBG values are (199, 67, 117), 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 electricCrimsonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 63.0/255.0, alpha: alpha ) } + class func fuchsiaRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 199.0/255.0, green: 67.0/255.0, blue: 117.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Cyan, whose RBG values are (0, 255, 255), and has the specified opacity. + Returns a UIColor object representing the color Fulvous, whose RBG values are (228, 132, 0), 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 electricCyanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func fulvousColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 228.0/255.0, green: 132.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Green, whose RBG values are (0, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Fuzzy Wuzzy (Crayola), whose RBG values are (204, 102, 102), 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 electricGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func fuzzyWuzzyCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 102.0/255.0, blue: 102.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Indigo, whose RBG values are (111, 0, 255), and has the specified opacity. + Returns a UIColor object representing the color GO Green, whose RBG values are (0, 171, 102), 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 electricIndigoColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 111.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func gOGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 171.0/255.0, blue: 102.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Lavender, whose RBG values are (244, 187, 255), and has the specified opacity. + Returns a UIColor object representing the color Gainsboro, whose RBG values are (220, 220, 220), 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 electricLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 244.0/255.0, green: 187.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func gainsboroColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 220.0/255.0, green: 220.0/255.0, blue: 220.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Lime, whose RBG values are (204, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Gamboge, whose RBG values are (228, 155, 15), 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 electricLimeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func gambogeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 228.0/255.0, green: 155.0/255.0, blue: 15.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Purple, whose RBG values are (191, 0, 255), and has the specified opacity. + Returns a UIColor object representing the color Gamboge Orange (Brown), whose RBG values are (152, 102, 0), 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 electricPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 191.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func gambogeOrangeBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 152.0/255.0, green: 102.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Ultramarine, whose RBG values are (63, 0, 255), and has the specified opacity. + Returns a UIColor object representing the color Generic Viridian, whose RBG values are (0, 127, 102), 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 electricUltramarineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 63.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func genericViridianColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 127.0/255.0, blue: 102.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Violet, whose RBG values are (143, 0, 255), and has the specified opacity. + Returns a UIColor object representing the color Ghost White, whose RBG values are (248, 248, 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 electricVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 143.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func ghostWhiteColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 248.0/255.0, green: 248.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Electric Yellow, whose RBG values are (255, 255, 51), and has the specified opacity. + Returns a UIColor object representing the color Giants Orange, whose RBG values are (254, 90, 29), 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 electricYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 51.0/255.0, alpha: alpha ) } + class func giantsOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 254.0/255.0, green: 90.0/255.0, blue: 29.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Emerald, whose RBG values are (80, 200, 120), and has the specified opacity. + Returns a UIColor object representing the color Glaucous, whose RBG values are (96, 130, 182), 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 emeraldColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 80.0/255.0, green: 200.0/255.0, blue: 120.0/255.0, alpha: alpha ) } + class func glaucousColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 96.0/255.0, green: 130.0/255.0, blue: 182.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Eminence, whose RBG values are (108, 48, 130), and has the specified opacity. + Returns a UIColor object representing the color Glitter, whose RBG values are (230, 232, 250), 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 eminenceColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 108.0/255.0, green: 48.0/255.0, blue: 130.0/255.0, alpha: alpha ) } + class func glitterColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 232.0/255.0, blue: 250.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color English Green, whose RBG values are (27, 77, 62), and has the specified opacity. + Returns a UIColor object representing the color Gold (Crayola), whose RBG values are (231, 198, 151), 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 englishGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 27.0/255.0, green: 77.0/255.0, blue: 62.0/255.0, alpha: alpha ) } + class func goldCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 231.0/255.0, green: 198.0/255.0, blue: 151.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color English Lavender, whose RBG values are (180, 131, 149), and has the specified opacity. + Returns a UIColor object representing the color Gold (Metallic), whose RBG values are (212, 175, 55), 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 englishLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 180.0/255.0, green: 131.0/255.0, blue: 149.0/255.0, alpha: alpha ) } + class func goldMetallicColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 212.0/255.0, green: 175.0/255.0, blue: 55.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color English Red, whose RBG values are (171, 75, 82), and has the specified opacity. + Returns a UIColor object representing the color Gold (Web) (Golden), whose RBG values are (255, 215, 0), 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 englishRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 171.0/255.0, green: 75.0/255.0, blue: 82.0/255.0, alpha: alpha ) } + class func goldWebGoldenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 215.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color English Violet, whose RBG values are (86, 60, 92), and has the specified opacity. + Returns a UIColor object representing the color Gold Fusion, whose RBG values are (133, 117, 78), 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 englishVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 86.0/255.0, green: 60.0/255.0, blue: 92.0/255.0, alpha: alpha ) } + class func goldFusionColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 133.0/255.0, green: 117.0/255.0, blue: 78.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Eton Blue, whose RBG values are (150, 200, 162), and has the specified opacity. + Returns a UIColor object representing the color Golden Brown, whose RBG values are (153, 101, 21), 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 etonBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 150.0/255.0, green: 200.0/255.0, blue: 162.0/255.0, alpha: alpha ) } + class func goldenBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 153.0/255.0, green: 101.0/255.0, blue: 21.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Eucalyptus, whose RBG values are (68, 215, 168), and has the specified opacity. + Returns a UIColor object representing the color Golden Poppy, whose RBG values are (252, 194, 0), 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 eucalyptusColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 68.0/255.0, green: 215.0/255.0, blue: 168.0/255.0, alpha: alpha ) } + class func goldenPoppyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 252.0/255.0, green: 194.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fallow, whose RBG values are (193, 154, 107), and has the specified opacity. + Returns a UIColor object representing the color Golden Yellow, whose RBG values are (255, 223, 0), 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 fallowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 193.0/255.0, green: 154.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func goldenYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 223.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Falu Red, whose RBG values are (128, 24, 24), and has the specified opacity. + Returns a UIColor object representing the color Goldenrod, whose RBG values are (218, 165, 32), 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 faluRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 128.0/255.0, green: 24.0/255.0, blue: 24.0/255.0, alpha: alpha ) } + class func goldenrodColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 218.0/255.0, green: 165.0/255.0, blue: 32.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fandango, whose RBG values are (181, 51, 137), and has the specified opacity. + Returns a UIColor object representing the color Goldenrod (Crayola), whose RBG values are (252, 217, 117), 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 fandangoColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 181.0/255.0, green: 51.0/255.0, blue: 137.0/255.0, alpha: alpha ) } + class func goldenrodCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 252.0/255.0, green: 217.0/255.0, blue: 117.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fandango Pink, whose RBG values are (222, 82, 133), and has the specified opacity. + Returns a UIColor object representing the color Granny Smith Apple (Crayola), whose RBG values are (168, 228, 160), 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 fandangoPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 222.0/255.0, green: 82.0/255.0, blue: 133.0/255.0, alpha: alpha ) } + class func grannySmithAppleCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 168.0/255.0, green: 228.0/255.0, blue: 160.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fashion Fuchsia, whose RBG values are (244, 0, 161), and has the specified opacity. + Returns a UIColor object representing the color Grape, whose RBG values are (111, 45, 168), 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 fashionFuchsiaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 244.0/255.0, green: 0.0/255.0, blue: 161.0/255.0, alpha: alpha ) } + class func grapeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 111.0/255.0, green: 45.0/255.0, blue: 168.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fawn, whose RBG values are (229, 170, 112), and has the specified opacity. + Returns a UIColor object representing the color Gray (Alternate), whose RBG values are (128, 128, 128), 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 fawnColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 229.0/255.0, green: 170.0/255.0, blue: 112.0/255.0, alpha: alpha ) } + class func grayAlternateColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 128.0/255.0, blue: 128.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Feldgrau, whose RBG values are (77, 93, 83), and has the specified opacity. + Returns a UIColor object representing the color Gray (Crayola), whose RBG values are (149, 145, 140), 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 feldgrauColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 77.0/255.0, green: 93.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + class func grayCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 149.0/255.0, green: 145.0/255.0, blue: 140.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Feldspar, whose RBG values are (253, 213, 177), and has the specified opacity. + Returns a UIColor object representing the color Gray (HTML/CSS Gray), whose RBG values are (128, 128, 128), 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 feldsparColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 253.0/255.0, green: 213.0/255.0, blue: 177.0/255.0, alpha: alpha ) } + class func grayHTMLCSSGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 128.0/255.0, blue: 128.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fern (Crayola), whose RBG values are (113, 188, 120), and has the specified opacity. + Returns a UIColor object representing the color Gray (X11 Gray), whose RBG values are (190, 190, 190), 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 fernCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 113.0/255.0, green: 188.0/255.0, blue: 120.0/255.0, alpha: alpha ) } + class func grayX11GrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 190.0/255.0, green: 190.0/255.0, blue: 190.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fern Green, whose RBG values are (79, 121, 66), and has the specified opacity. + Returns a UIColor object representing the color Gray-Asparagus, whose RBG values are (70, 89, 69), 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 fernGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 79.0/255.0, green: 121.0/255.0, blue: 66.0/255.0, alpha: alpha ) } + class func grayAsparagusColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 70.0/255.0, green: 89.0/255.0, blue: 69.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Ferrari Red, whose RBG values are (255, 40, 0), and has the specified opacity. + Returns a UIColor object representing the color Gray-Blue, whose RBG values are (140, 146, 172), 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 ferrariRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 40.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func grayBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 140.0/255.0, green: 146.0/255.0, blue: 172.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Field Drab, whose RBG values are (108, 84, 30), and has the specified opacity. + Returns a UIColor object representing the color Green (Color Wheel) (X11 Green), whose RBG values are (0, 255, 0), 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 fieldDrabColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 108.0/255.0, green: 84.0/255.0, blue: 30.0/255.0, alpha: alpha ) } + class func greenColorWheelX11GreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fire Engine Red, whose RBG values are (206, 32, 41), and has the specified opacity. + Returns a UIColor object representing the color Green (Crayola), whose RBG values are (28, 172, 120), 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 fireEngineRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 206.0/255.0, green: 32.0/255.0, blue: 41.0/255.0, alpha: alpha ) } + class func greenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 28.0/255.0, green: 172.0/255.0, blue: 120.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Firebrick, whose RBG values are (178, 34, 34), and has the specified opacity. + Returns a UIColor object representing the color Green (HTML/CSS Color), whose RBG values are (0, 128, 0), 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 firebrickColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 178.0/255.0, green: 34.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + class func greenHTMLCSSColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 128.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Flame, whose RBG values are (226, 88, 34), and has the specified opacity. + Returns a UIColor object representing the color Green (Munsell), whose RBG values are (0, 168, 119), 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 flameColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 226.0/255.0, green: 88.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + class func greenMunsellColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 168.0/255.0, blue: 119.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Flamingo Pink, whose RBG values are (252, 142, 172), and has the specified opacity. + Returns a UIColor object representing the color Green (NCS), whose RBG values are (0, 159, 107), 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 flamingoPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 252.0/255.0, green: 142.0/255.0, blue: 172.0/255.0, alpha: alpha ) } + class func greenNCSColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 159.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Flattery, whose RBG values are (107, 68, 35), and has the specified opacity. + Returns a UIColor object representing the color Green (Pantone), whose RBG values are (0, 173, 67), 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 flatteryColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 107.0/255.0, green: 68.0/255.0, blue: 35.0/255.0, alpha: alpha ) } + class func greenPantoneColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 173.0/255.0, blue: 67.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Flavescent, whose RBG values are (247, 233, 142), and has the specified opacity. + Returns a UIColor object representing the color Green (Pigment), whose RBG values are (0, 165, 80), 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 flavescentColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 247.0/255.0, green: 233.0/255.0, blue: 142.0/255.0, alpha: alpha ) } + class func greenPigmentColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 165.0/255.0, blue: 80.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Flax, whose RBG values are (238, 220, 130), and has the specified opacity. + Returns a UIColor object representing the color Green (RYB), whose RBG values are (102, 176, 50), 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 flaxColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 238.0/255.0, green: 220.0/255.0, blue: 130.0/255.0, alpha: alpha ) } + class func greenRYBColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 176.0/255.0, blue: 50.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Flirt, whose RBG values are (162, 0, 109), and has the specified opacity. + Returns a UIColor object representing the color Green 100, whose RBG values are (200, 230, 201), 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 flirtColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 162.0/255.0, green: 0.0/255.0, blue: 109.0/255.0, alpha: alpha ) } + class func green100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 200.0/255.0, green: 230.0/255.0, blue: 201.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Floral White, whose RBG values are (255, 250, 240), and has the specified opacity. + Returns a UIColor object representing the color Green 200, whose RBG values are (165, 214, 167), 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 floralWhiteColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 250.0/255.0, blue: 240.0/255.0, alpha: alpha ) } + class func green200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 165.0/255.0, green: 214.0/255.0, blue: 167.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fluorescent Orange, whose RBG values are (255, 191, 0), and has the specified opacity. + Returns a UIColor object representing the color Green 300, whose RBG values are (129, 199, 132), 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 fluorescentOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 191.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func green300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 129.0/255.0, green: 199.0/255.0, blue: 132.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fluorescent Pink, whose RBG values are (255, 20, 147), and has the specified opacity. + Returns a UIColor object representing the color Green 400, whose RBG values are (102, 187, 106), 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 fluorescentPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 20.0/255.0, blue: 147.0/255.0, alpha: alpha ) } + class func green400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 187.0/255.0, blue: 106.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fluorescent Yellow, whose RBG values are (204, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Green 50, whose RBG values are (232, 245, 233), 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 fluorescentYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func green50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 232.0/255.0, green: 245.0/255.0, blue: 233.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Folly, whose RBG values are (255, 0, 79), and has the specified opacity. + Returns a UIColor object representing the color Green 500, whose RBG values are (76, 175, 80), 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 follyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 0.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + class func green500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 76.0/255.0, green: 175.0/255.0, blue: 80.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Forest Green (Crayola), whose RBG values are (109, 174, 129), and has the specified opacity. + Returns a UIColor object representing the color Green 600, whose RBG values are (67, 160, 71), 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 forestGreenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 109.0/255.0, green: 174.0/255.0, blue: 129.0/255.0, alpha: alpha ) } + class func green600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 67.0/255.0, green: 160.0/255.0, blue: 71.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Forest Green (Traditional), whose RBG values are (1, 68, 33), and has the specified opacity. + Returns a UIColor object representing the color Green 700, whose RBG values are (56, 142, 60), 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 forestGreenTraditionalColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 1.0/255.0, green: 68.0/255.0, blue: 33.0/255.0, alpha: alpha ) } + class func green700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 56.0/255.0, green: 142.0/255.0, blue: 60.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Forest Green (Web), whose RBG values are (34, 139, 34), and has the specified opacity. + Returns a UIColor object representing the color Green 800, whose RBG values are (46, 125, 50), 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 forestGreenWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 34.0/255.0, green: 139.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + class func green800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 46.0/255.0, green: 125.0/255.0, blue: 50.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Beige, whose RBG values are (166, 123, 91), and has the specified opacity. + Returns a UIColor object representing the color Green 900, whose RBG values are (27, 94, 32), 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 frenchBeigeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 166.0/255.0, green: 123.0/255.0, blue: 91.0/255.0, alpha: alpha ) } + class func green900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 27.0/255.0, green: 94.0/255.0, blue: 32.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Bistre, whose RBG values are (133, 109, 77), and has the specified opacity. + Returns a UIColor object representing the color Green A100, whose RBG values are (185, 246, 202), 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 frenchBistreColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 133.0/255.0, green: 109.0/255.0, blue: 77.0/255.0, alpha: alpha ) } + class func greenA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 185.0/255.0, green: 246.0/255.0, blue: 202.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Blue, whose RBG values are (0, 114, 187), and has the specified opacity. + Returns a UIColor object representing the color Green A200, whose RBG values are (105, 240, 174), 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 frenchBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 114.0/255.0, blue: 187.0/255.0, alpha: alpha ) } + class func greenA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 105.0/255.0, green: 240.0/255.0, blue: 174.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Fuchsia, whose RBG values are (253, 63, 146), and has the specified opacity. + Returns a UIColor object representing the color Green A400, whose RBG values are (0, 230, 118), 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 frenchFuchsiaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 253.0/255.0, green: 63.0/255.0, blue: 146.0/255.0, alpha: alpha ) } + class func greenA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 230.0/255.0, blue: 118.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Lilac, whose RBG values are (134, 96, 142), and has the specified opacity. + Returns a UIColor object representing the color Green A700, whose RBG values are (0, 200, 83), 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 frenchLilacColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 134.0/255.0, green: 96.0/255.0, blue: 142.0/255.0, alpha: alpha ) } + class func greenA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 200.0/255.0, blue: 83.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Lime, whose RBG values are (158, 253, 56), and has the specified opacity. + Returns a UIColor object representing the color Green Blue (Crayola), whose RBG values are (17, 100, 180), 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 frenchLimeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 158.0/255.0, green: 253.0/255.0, blue: 56.0/255.0, alpha: alpha ) } + class func greenBlueCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 17.0/255.0, green: 100.0/255.0, blue: 180.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Mauve, whose RBG values are (212, 115, 212), and has the specified opacity. + Returns a UIColor object representing the color Green Yellow (Crayola), whose RBG values are (240, 232, 145), 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 frenchMauveColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 212.0/255.0, green: 115.0/255.0, blue: 212.0/255.0, alpha: alpha ) } + class func greenYellowCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 232.0/255.0, blue: 145.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Pink, whose RBG values are (253, 108, 158), and has the specified opacity. + Returns a UIColor object representing the color Green Yellow, whose RBG values are (173, 255, 47), 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 frenchPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 253.0/255.0, green: 108.0/255.0, blue: 158.0/255.0, alpha: alpha ) } + class func greenYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 173.0/255.0, green: 255.0/255.0, blue: 47.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Plum, whose RBG values are (129, 20, 83), and has the specified opacity. + Returns a UIColor object representing the color Green-Cyan, whose RBG values are (0, 153, 102), 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 frenchPlumColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 129.0/255.0, green: 20.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + class func greenCyanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 153.0/255.0, blue: 102.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Puce, whose RBG values are (78, 22, 9), and has the specified opacity. + Returns a UIColor object representing the color Grey 100, whose RBG values are (245, 245, 245), 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 frenchPuceColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 78.0/255.0, green: 22.0/255.0, blue: 9.0/255.0, alpha: alpha ) } + class func grey100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 245.0/255.0, green: 245.0/255.0, blue: 245.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Raspberry, whose RBG values are (199, 44, 72), and has the specified opacity. + Returns a UIColor object representing the color Grey 200, whose RBG values are (238, 238, 238), 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 frenchRaspberryColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 199.0/255.0, green: 44.0/255.0, blue: 72.0/255.0, alpha: alpha ) } + class func grey200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 238.0/255.0, green: 238.0/255.0, blue: 238.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Rose, whose RBG values are (246, 74, 138), and has the specified opacity. + Returns a UIColor object representing the color Grey 300, whose RBG values are (224, 224, 224), 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 frenchRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 246.0/255.0, green: 74.0/255.0, blue: 138.0/255.0, alpha: alpha ) } + class func grey300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 224.0/255.0, green: 224.0/255.0, blue: 224.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Sky Blue, whose RBG values are (119, 181, 254), and has the specified opacity. + Returns a UIColor object representing the color Grey 400, whose RBG values are (189, 189, 189), 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 frenchSkyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 119.0/255.0, green: 181.0/255.0, blue: 254.0/255.0, alpha: alpha ) } + class func grey400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 189.0/255.0, green: 189.0/255.0, blue: 189.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Violet, whose RBG values are (136, 6, 206), and has the specified opacity. + Returns a UIColor object representing the color Grey 50, whose RBG values are (250, 250, 250), 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 frenchVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 136.0/255.0, green: 6.0/255.0, blue: 206.0/255.0, alpha: alpha ) } + class func grey50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color French Wine, whose RBG values are (172, 30, 68), and has the specified opacity. + Returns a UIColor object representing the color Grey 500, whose RBG values are (158, 158, 158), 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 frenchWineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 172.0/255.0, green: 30.0/255.0, blue: 68.0/255.0, alpha: alpha ) } + class func grey500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 158.0/255.0, green: 158.0/255.0, blue: 158.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fresh Air, whose RBG values are (166, 231, 255), and has the specified opacity. + Returns a UIColor object representing the color Grey 600, whose RBG values are (117, 117, 117), 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 freshAirColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 166.0/255.0, green: 231.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func grey600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 117.0/255.0, green: 117.0/255.0, blue: 117.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fuchsia, whose RBG values are (255, 0, 255), and has the specified opacity. + Returns a UIColor object representing the color Grey 700, whose RBG values are (97, 97, 97), 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 fuchsiaColor ( 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 ) } + class func grey700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 97.0/255.0, green: 97.0/255.0, blue: 97.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fuchsia (Crayola), whose RBG values are (195, 100, 197), and has the specified opacity. + Returns a UIColor object representing the color Grey 800, whose RBG values are (66, 66, 66), 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 fuchsiaCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 195.0/255.0, green: 100.0/255.0, blue: 197.0/255.0, alpha: alpha ) } + class func grey800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 66.0/255.0, green: 66.0/255.0, blue: 66.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fuchsia Pink, whose RBG values are (255, 119, 255), and has the specified opacity. + Returns a UIColor object representing the color Grey 900, whose RBG values are (33, 33, 33), 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 fuchsiaPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 119.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func grey900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 33.0/255.0, green: 33.0/255.0, blue: 33.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fuchsia Purple, whose RBG values are (204, 57, 123), and has the specified opacity. + Returns a UIColor object representing the color Grizzly, whose RBG values are (136, 88, 24), 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 fuchsiaPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 57.0/255.0, blue: 123.0/255.0, alpha: alpha ) } + class func grizzlyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 136.0/255.0, green: 88.0/255.0, blue: 24.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fuchsia Rose, whose RBG values are (199, 67, 117), and has the specified opacity. + Returns a UIColor object representing the color Grullo, whose RBG values are (169, 154, 134), 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 fuchsiaRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 199.0/255.0, green: 67.0/255.0, blue: 117.0/255.0, alpha: alpha ) } + class func grulloColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 169.0/255.0, green: 154.0/255.0, blue: 134.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fulvous, whose RBG values are (228, 132, 0), and has the specified opacity. + Returns a UIColor object representing the color Grussrel, whose RBG values are (176, 101, 0), 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 fulvousColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 228.0/255.0, green: 132.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func grussrelColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 176.0/255.0, green: 101.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Fuzzy Wuzzy (Crayola), whose RBG values are (204, 102, 102), and has the specified opacity. + Returns a UIColor object representing the color Gunmetal, whose RBG values are (42, 52, 57), 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 fuzzyWuzzyCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 102.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + class func gunmetalColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 42.0/255.0, green: 52.0/255.0, blue: 57.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color GO Green, whose RBG values are (0, 171, 102), and has the specified opacity. + Returns a UIColor object representing the color Guppie Green, whose RBG values are (0, 255, 127), 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 gOGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 171.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + class func guppieGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 127.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gainsboro, whose RBG values are (220, 220, 220), and has the specified opacity. + Returns a UIColor object representing the color Halayà úbe, whose RBG values are (102, 55, 84), 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 gainsboroColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 220.0/255.0, green: 220.0/255.0, blue: 220.0/255.0, alpha: alpha ) } + class func halayàúbeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 55.0/255.0, blue: 84.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gamboge, whose RBG values are (228, 155, 15), and has the specified opacity. + Returns a UIColor object representing the color Han Blue, whose RBG values are (68, 108, 207), 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 gambogeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 228.0/255.0, green: 155.0/255.0, blue: 15.0/255.0, alpha: alpha ) } + class func hanBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 68.0/255.0, green: 108.0/255.0, blue: 207.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gamboge Orange (Brown), whose RBG values are (152, 102, 0), and has the specified opacity. + Returns a UIColor object representing the color Han Purple, whose RBG values are (82, 24, 250), 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 gambogeOrangeBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 152.0/255.0, green: 102.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func hanPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 82.0/255.0, green: 24.0/255.0, blue: 250.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Generic Viridian, whose RBG values are (0, 127, 102), and has the specified opacity. + Returns a UIColor object representing the color Hansa Yellow, whose RBG values are (233, 214, 107), 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 genericViridianColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 127.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + class func hansaYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 233.0/255.0, green: 214.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Ghost White, whose RBG values are (248, 248, 255), and has the specified opacity. + Returns a UIColor object representing the color Harlequin, whose RBG values are (63, 255, 0), 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 ghostWhiteColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 248.0/255.0, green: 248.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func harlequinColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 63.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Giants Orange, whose RBG values are (254, 90, 29), and has the specified opacity. + Returns a UIColor object representing the color Harlequin Green, whose RBG values are (70, 203, 24), 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 giantsOrangeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 254.0/255.0, green: 90.0/255.0, blue: 29.0/255.0, alpha: alpha ) } + class func harlequinGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 70.0/255.0, green: 203.0/255.0, blue: 24.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Glaucous, whose RBG values are (96, 130, 182), and has the specified opacity. + Returns a UIColor object representing the color Harvard Crimson, whose RBG values are (201, 0, 22), 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 glaucousColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 96.0/255.0, green: 130.0/255.0, blue: 182.0/255.0, alpha: alpha ) } + class func harvardCrimsonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 201.0/255.0, green: 0.0/255.0, blue: 22.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Glitter, whose RBG values are (230, 232, 250), and has the specified opacity. + Returns a UIColor object representing the color Harvest Gold, whose RBG values are (218, 145, 0), 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 glitterColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 230.0/255.0, green: 232.0/255.0, blue: 250.0/255.0, alpha: alpha ) } + class func harvestGoldColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 218.0/255.0, green: 145.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gold (Crayola), whose RBG values are (231, 198, 151), and has the specified opacity. + Returns a UIColor object representing the color Heart Gold, whose RBG values are (128, 128, 0), 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 goldCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 231.0/255.0, green: 198.0/255.0, blue: 151.0/255.0, alpha: alpha ) } + class func heartGoldColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 128.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gold (Metallic), whose RBG values are (212, 175, 55), and has the specified opacity. + Returns a UIColor object representing the color Heliotrope, whose RBG values are (223, 115, 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 goldMetallicColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 212.0/255.0, green: 175.0/255.0, blue: 55.0/255.0, alpha: alpha ) } + class func heliotropeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 223.0/255.0, green: 115.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gold (Web) (Golden), whose RBG values are (255, 215, 0), and has the specified opacity. + Returns a UIColor object representing the color Heliotrope Gray, whose RBG values are (170, 152, 168), 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 goldWebGoldenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 215.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func heliotropeGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 170.0/255.0, green: 152.0/255.0, blue: 168.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gold Fusion, whose RBG values are (133, 117, 78), and has the specified opacity. + Returns a UIColor object representing the color Heliotrope Magenta, whose RBG values are (170, 0, 187), 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 goldFusionColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 133.0/255.0, green: 117.0/255.0, blue: 78.0/255.0, alpha: alpha ) } + class func heliotropeMagentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 170.0/255.0, green: 0.0/255.0, blue: 187.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Golden Brown, whose RBG values are (153, 101, 21), and has the specified opacity. + Returns a UIColor object representing the color Hollywood Cerise, whose RBG values are (244, 0, 161), 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 goldenBrownColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 153.0/255.0, green: 101.0/255.0, blue: 21.0/255.0, alpha: alpha ) } + class func hollywoodCeriseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 0.0/255.0, blue: 161.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Golden Poppy, whose RBG values are (252, 194, 0), and has the specified opacity. + Returns a UIColor object representing the color Honeydew, whose RBG values are (240, 255, 240), 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 goldenPoppyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 252.0/255.0, green: 194.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func honeydewColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 255.0/255.0, blue: 240.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Golden Yellow, whose RBG values are (255, 223, 0), and has the specified opacity. + Returns a UIColor object representing the color Honolulu Blue, whose RBG values are (0, 109, 176), 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 goldenYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 223.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func honoluluBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 109.0/255.0, blue: 176.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Goldenrod, whose RBG values are (218, 165, 32), and has the specified opacity. + Returns a UIColor object representing the color Hooker's Green, whose RBG values are (73, 121, 107), 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 goldenrodColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 218.0/255.0, green: 165.0/255.0, blue: 32.0/255.0, alpha: alpha ) } + class func hookersGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 73.0/255.0, green: 121.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Goldenrod (Crayola), whose RBG values are (252, 217, 117), and has the specified opacity. + Returns a UIColor object representing the color Hot Magenta (Crayola), whose RBG values are (255, 29, 206), 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 goldenrodCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 252.0/255.0, green: 217.0/255.0, blue: 117.0/255.0, alpha: alpha ) } + class func hotMagentaCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 29.0/255.0, blue: 206.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Granny Smith Apple (Crayola), whose RBG values are (168, 228, 160), and has the specified opacity. + Returns a UIColor object representing the color Hot Pink, whose RBG values are (255, 105, 180), 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 grannySmithAppleCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 168.0/255.0, green: 228.0/255.0, blue: 160.0/255.0, alpha: alpha ) } + class func hotPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 105.0/255.0, blue: 180.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Grape, whose RBG values are (111, 45, 168), and has the specified opacity. + Returns a UIColor object representing the color Hunter Green, whose RBG values are (53, 94, 59), 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 grapeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 111.0/255.0, green: 45.0/255.0, blue: 168.0/255.0, alpha: alpha ) } + class func hunterGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 53.0/255.0, green: 94.0/255.0, blue: 59.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gray (Alternate), whose RBG values are (128, 128, 128), and has the specified opacity. + Returns a UIColor object representing the color Iceberg, whose RBG values are (113, 166, 210), 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 grayAlternateColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 128.0/255.0, green: 128.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + class func icebergColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 113.0/255.0, green: 166.0/255.0, blue: 210.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gray (Crayola), whose RBG values are (149, 145, 140), and has the specified opacity. + Returns a UIColor object representing the color Icterine, whose RBG values are (252, 247, 94), 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 grayCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 149.0/255.0, green: 145.0/255.0, blue: 140.0/255.0, alpha: alpha ) } + class func icterineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 252.0/255.0, green: 247.0/255.0, blue: 94.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gray (HTML/CSS Gray), whose RBG values are (128, 128, 128), and has the specified opacity. + Returns a UIColor object representing the color Illuminating Emerald, whose RBG values are (49, 145, 119), 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 grayHTMLCSSGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 128.0/255.0, green: 128.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + class func illuminatingEmeraldColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 49.0/255.0, green: 145.0/255.0, blue: 119.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gray (X11 Gray), whose RBG values are (190, 190, 190), and has the specified opacity. + Returns a UIColor object representing the color Imperial, whose RBG values are (96, 47, 107), 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 grayX11GrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 190.0/255.0, green: 190.0/255.0, blue: 190.0/255.0, alpha: alpha ) } + class func imperialColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 96.0/255.0, green: 47.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gray-Asparagus, whose RBG values are (70, 89, 69), and has the specified opacity. + Returns a UIColor object representing the color Imperial Blue, whose RBG values are (0, 35, 149), 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 grayAsparagusColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 70.0/255.0, green: 89.0/255.0, blue: 69.0/255.0, alpha: alpha ) } + class func imperialBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 35.0/255.0, blue: 149.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gray-Blue, whose RBG values are (140, 146, 172), and has the specified opacity. + Returns a UIColor object representing the color Imperial Purple, whose RBG values are (102, 2, 60), 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 grayBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 140.0/255.0, green: 146.0/255.0, blue: 172.0/255.0, alpha: alpha ) } + class func imperialPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 2.0/255.0, blue: 60.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green (Color Wheel) (X11 Green), whose RBG values are (0, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Imperial Red, whose RBG values are (237, 41, 57), 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 greenColorWheelX11GreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func imperialRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 237.0/255.0, green: 41.0/255.0, blue: 57.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green (Crayola), whose RBG values are (28, 172, 120), and has the specified opacity. + Returns a UIColor object representing the color Inchworm (Crayola), whose RBG values are (178, 236, 93), 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 greenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 28.0/255.0, green: 172.0/255.0, blue: 120.0/255.0, alpha: alpha ) } + class func inchwormCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 236.0/255.0, blue: 93.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green (HTML/CSS Color), whose RBG values are (0, 128, 0), and has the specified opacity. + Returns a UIColor object representing the color Independence, whose RBG values are (76, 81, 109), 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 greenHTMLCSSColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 128.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func independenceColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 76.0/255.0, green: 81.0/255.0, blue: 109.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green (Munsell), whose RBG values are (0, 168, 119), and has the specified opacity. + Returns a UIColor object representing the color India Green, whose RBG values are (19, 136, 8), 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 greenMunsellColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 168.0/255.0, blue: 119.0/255.0, alpha: alpha ) } + class func indiaGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 19.0/255.0, green: 136.0/255.0, blue: 8.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green (NCS), whose RBG values are (0, 159, 107), and has the specified opacity. + Returns a UIColor object representing the color Indian Red, whose RBG values are (205, 92, 92), 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 greenNCSColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 159.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func indianRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 205.0/255.0, green: 92.0/255.0, blue: 92.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green (Pantone), whose RBG values are (0, 173, 67), and has the specified opacity. + Returns a UIColor object representing the color Indian Yellow, whose RBG values are (227, 168, 87), 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 greenPantoneColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 173.0/255.0, blue: 67.0/255.0, alpha: alpha ) } + class func indianYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 227.0/255.0, green: 168.0/255.0, blue: 87.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green (Pigment), whose RBG values are (0, 165, 80), and has the specified opacity. + Returns a UIColor object representing the color Indigo, whose RBG values are (75, 0, 130), 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 greenPigmentColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 165.0/255.0, blue: 80.0/255.0, alpha: alpha ) } + class func indigoColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 75.0/255.0, green: 0.0/255.0, blue: 130.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green (RYB), whose RBG values are (102, 176, 50), and has the specified opacity. + Returns a UIColor object representing the color Indigo (Crayola), whose RBG values are (93, 118, 203), 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 greenRYBColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 102.0/255.0, green: 176.0/255.0, blue: 50.0/255.0, alpha: alpha ) } + class func indigoCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 93.0/255.0, green: 118.0/255.0, blue: 203.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green Blue (Crayola), whose RBG values are (17, 100, 180), and has the specified opacity. + Returns a UIColor object representing the color Indigo 100, whose RBG values are (197, 202, 233), 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 greenBlueCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 17.0/255.0, green: 100.0/255.0, blue: 180.0/255.0, alpha: alpha ) } + class func indigo100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 197.0/255.0, green: 202.0/255.0, blue: 233.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green Yellow (Crayola), whose RBG values are (240, 232, 145), and has the specified opacity. + Returns a UIColor object representing the color Indigo 200, whose RBG values are (159, 168, 218), 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 greenYellowCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 240.0/255.0, green: 232.0/255.0, blue: 145.0/255.0, alpha: alpha ) } + class func indigo200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 159.0/255.0, green: 168.0/255.0, blue: 218.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green Yellow, whose RBG values are (173, 255, 47), and has the specified opacity. + Returns a UIColor object representing the color Indigo 300, whose RBG values are (121, 134, 203), 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 greenYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 173.0/255.0, green: 255.0/255.0, blue: 47.0/255.0, alpha: alpha ) } + class func indigo300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 121.0/255.0, green: 134.0/255.0, blue: 203.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Green-Cyan, whose RBG values are (0, 153, 102), and has the specified opacity. + Returns a UIColor object representing the color Indigo 400, whose RBG values are (92, 107, 192), 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 greenCyanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 153.0/255.0, blue: 102.0/255.0, alpha: alpha ) } + class func indigo400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 92.0/255.0, green: 107.0/255.0, blue: 192.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Grizzly, whose RBG values are (136, 88, 24), and has the specified opacity. + Returns a UIColor object representing the color Indigo 50, whose RBG values are (232, 234, 246), 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 grizzlyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 136.0/255.0, green: 88.0/255.0, blue: 24.0/255.0, alpha: alpha ) } + class func indigo50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 232.0/255.0, green: 234.0/255.0, blue: 246.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Grullo, whose RBG values are (169, 154, 134), and has the specified opacity. + Returns a UIColor object representing the color Indigo 500, whose RBG values are (63, 81, 181), 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 grulloColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 169.0/255.0, green: 154.0/255.0, blue: 134.0/255.0, alpha: alpha ) } + class func indigo500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 63.0/255.0, green: 81.0/255.0, blue: 181.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Grussrel, whose RBG values are (176, 101, 0), and has the specified opacity. + Returns a UIColor object representing the color Indigo 600, whose RBG values are (57, 73, 171), 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 grussrelColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 176.0/255.0, green: 101.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func indigo600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 57.0/255.0, green: 73.0/255.0, blue: 171.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Gunmetal, whose RBG values are (42, 52, 57), and has the specified opacity. + Returns a UIColor object representing the color Indigo 700, whose RBG values are (48, 63, 159), 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 gunmetalColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 42.0/255.0, green: 52.0/255.0, blue: 57.0/255.0, alpha: alpha ) } + class func indigo700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 48.0/255.0, green: 63.0/255.0, blue: 159.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Guppie Green, whose RBG values are (0, 255, 127), and has the specified opacity. + Returns a UIColor object representing the color Indigo 800, whose RBG values are (40, 53, 147), 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 guppieGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 127.0/255.0, alpha: alpha ) } + class func indigo800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 40.0/255.0, green: 53.0/255.0, blue: 147.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Halayà úbe, whose RBG values are (102, 55, 84), and has the specified opacity. + Returns a UIColor object representing the color Indigo 900, whose RBG values are (26, 35, 126), 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 halayàúbeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 102.0/255.0, green: 55.0/255.0, blue: 84.0/255.0, alpha: alpha ) } + class func indigo900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 26.0/255.0, green: 35.0/255.0, blue: 126.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Han Blue, whose RBG values are (68, 108, 207), and has the specified opacity. + Returns a UIColor object representing the color Indigo A100, whose RBG values are (140, 158, 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 hanBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 68.0/255.0, green: 108.0/255.0, blue: 207.0/255.0, alpha: alpha ) } + class func indigoA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 140.0/255.0, green: 158.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Han Purple, whose RBG values are (82, 24, 250), and has the specified opacity. + Returns a UIColor object representing the color Indigo A200, whose RBG values are (83, 109, 254), 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 hanPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 82.0/255.0, green: 24.0/255.0, blue: 250.0/255.0, alpha: alpha ) } + class func indigoA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 83.0/255.0, green: 109.0/255.0, blue: 254.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Hansa Yellow, whose RBG values are (233, 214, 107), and has the specified opacity. + Returns a UIColor object representing the color Indigo A400, whose RBG values are (61, 90, 254), 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 hansaYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 233.0/255.0, green: 214.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func indigoA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 61.0/255.0, green: 90.0/255.0, blue: 254.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Harlequin, whose RBG values are (63, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Indigo A700, whose RBG values are (48, 79, 254), 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 harlequinColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 63.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func indigoA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 48.0/255.0, green: 79.0/255.0, blue: 254.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Harlequin Green, whose RBG values are (70, 203, 24), and has the specified opacity. + Returns a UIColor object representing the color Indigo Dye, whose RBG values are (9, 31, 146), 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 harlequinGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 70.0/255.0, green: 203.0/255.0, blue: 24.0/255.0, alpha: alpha ) } + class func indigoDyeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 9.0/255.0, green: 31.0/255.0, blue: 146.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Harvard Crimson, whose RBG values are (201, 0, 22), and has the specified opacity. + Returns a UIColor object representing the color International Klein Blue, whose RBG values are (0, 47, 167), 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 harvardCrimsonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 201.0/255.0, green: 0.0/255.0, blue: 22.0/255.0, alpha: alpha ) } + class func internationalKleinBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 47.0/255.0, blue: 167.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Harvest Gold, whose RBG values are (218, 145, 0), and has the specified opacity. + Returns a UIColor object representing the color International Orange (Aerospace), whose RBG values are (255, 79, 0), 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 harvestGoldColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 218.0/255.0, green: 145.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func internationalOrangeAerospaceColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 79.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Heart Gold, whose RBG values are (128, 128, 0), and has the specified opacity. + Returns a UIColor object representing the color International Orange (Engineering), whose RBG values are (186, 22, 12), 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 heartGoldColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 128.0/255.0, green: 128.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func internationalOrangeEngineeringColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 186.0/255.0, green: 22.0/255.0, blue: 12.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Heliotrope, whose RBG values are (223, 115, 255), and has the specified opacity. + Returns a UIColor object representing the color International Orange (Golden Gate Bridge), whose RBG values are (192, 54, 44), 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 heliotropeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 223.0/255.0, green: 115.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func internationalOrangeGoldenGateBridgeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 192.0/255.0, green: 54.0/255.0, blue: 44.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Heliotrope Gray, whose RBG values are (170, 152, 168), and has the specified opacity. + Returns a UIColor object representing the color Iris, whose RBG values are (90, 79, 207), 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 heliotropeGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 170.0/255.0, green: 152.0/255.0, blue: 168.0/255.0, alpha: alpha ) } + class func irisColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 90.0/255.0, green: 79.0/255.0, blue: 207.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Heliotrope Magenta, whose RBG values are (170, 0, 187), and has the specified opacity. + Returns a UIColor object representing the color Irresistible, whose RBG values are (179, 68, 108), 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 heliotropeMagentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 170.0/255.0, green: 0.0/255.0, blue: 187.0/255.0, alpha: alpha ) } + class func irresistibleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 179.0/255.0, green: 68.0/255.0, blue: 108.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Hollywood Cerise, whose RBG values are (244, 0, 161), and has the specified opacity. + Returns a UIColor object representing the color Isabelline, whose RBG values are (244, 240, 236), 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 hollywoodCeriseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 244.0/255.0, green: 0.0/255.0, blue: 161.0/255.0, alpha: alpha ) } + class func isabellineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 240.0/255.0, blue: 236.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Honeydew, whose RBG values are (240, 255, 240), and has the specified opacity. + Returns a UIColor object representing the color Islamic Green, whose RBG values are (0, 144, 0), 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 honeydewColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 240.0/255.0, green: 255.0/255.0, blue: 240.0/255.0, alpha: alpha ) } + class func islamicGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 144.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Honolulu Blue, whose RBG values are (0, 109, 176), and has the specified opacity. + Returns a UIColor object representing the color Italian Sky Blue, whose RBG values are (178, 255, 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 honoluluBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 109.0/255.0, blue: 176.0/255.0, alpha: alpha ) } + class func italianSkyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Hooker's Green, whose RBG values are (73, 121, 107), and has the specified opacity. + Returns a UIColor object representing the color Ivory, whose RBG values are (255, 255, 240), 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 hookersGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 73.0/255.0, green: 121.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func ivoryColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 240.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Hot Magenta (Crayola), whose RBG values are (255, 29, 206), and has the specified opacity. + Returns a UIColor object representing the color Jade, whose RBG values are (0, 168, 107), 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 hotMagentaCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 29.0/255.0, blue: 206.0/255.0, alpha: alpha ) } + class func jadeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 168.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Hot Pink, whose RBG values are (255, 105, 180), and has the specified opacity. + Returns a UIColor object representing the color Japanese Carmine, whose RBG values are (157, 41, 51), 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 hotPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 105.0/255.0, blue: 180.0/255.0, alpha: alpha ) } + class func japaneseCarmineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 157.0/255.0, green: 41.0/255.0, blue: 51.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Hunter Green, whose RBG values are (53, 94, 59), and has the specified opacity. + Returns a UIColor object representing the color Japanese Indigo, whose RBG values are (38, 67, 72), 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 hunterGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 53.0/255.0, green: 94.0/255.0, blue: 59.0/255.0, alpha: alpha ) } + class func japaneseIndigoColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 38.0/255.0, green: 67.0/255.0, blue: 72.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Iceberg, whose RBG values are (113, 166, 210), and has the specified opacity. + Returns a UIColor object representing the color Japanese Violet, whose RBG values are (91, 50, 86), 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 icebergColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 113.0/255.0, green: 166.0/255.0, blue: 210.0/255.0, alpha: alpha ) } + class func japaneseVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 91.0/255.0, green: 50.0/255.0, blue: 86.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Icterine, whose RBG values are (252, 247, 94), and has the specified opacity. + Returns a UIColor object representing the color Jasmine, whose RBG values are (248, 222, 126), 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 icterineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 252.0/255.0, green: 247.0/255.0, blue: 94.0/255.0, alpha: alpha ) } + class func jasmineColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 248.0/255.0, green: 222.0/255.0, blue: 126.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Illuminating Emerald, whose RBG values are (49, 145, 119), and has the specified opacity. + Returns a UIColor object representing the color Jasper, whose RBG values are (215, 59, 62), 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 illuminatingEmeraldColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 49.0/255.0, green: 145.0/255.0, blue: 119.0/255.0, alpha: alpha ) } + class func jasperColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 215.0/255.0, green: 59.0/255.0, blue: 62.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Imperial, whose RBG values are (96, 47, 107), and has the specified opacity. + Returns a UIColor object representing the color Jawad/Chicken Color (HTML/CSS) (Khaki), whose RBG values are (195, 176, 145), 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 imperialColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 96.0/255.0, green: 47.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func jawadChickenColorHTMLCSSKhakiColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 195.0/255.0, green: 176.0/255.0, blue: 145.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Imperial Blue, whose RBG values are (0, 35, 149), and has the specified opacity. + Returns a UIColor object representing the color Jazzberry Jam (Crayola), whose RBG values are (202, 55, 103), 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 imperialBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 35.0/255.0, blue: 149.0/255.0, alpha: alpha ) } + class func jazzberryJamCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 202.0/255.0, green: 55.0/255.0, blue: 103.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Imperial Purple, whose RBG values are (102, 2, 60), and has the specified opacity. + Returns a UIColor object representing the color Jelly Bean, whose RBG values are (218, 97, 78), 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 imperialPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 102.0/255.0, green: 2.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + class func jellyBeanColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 218.0/255.0, green: 97.0/255.0, blue: 78.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Imperial Red, whose RBG values are (237, 41, 57), and has the specified opacity. + Returns a UIColor object representing the color Jet, whose RBG values are (52, 52, 52), 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 imperialRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 237.0/255.0, green: 41.0/255.0, blue: 57.0/255.0, alpha: alpha ) } + class func jetColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 52.0/255.0, green: 52.0/255.0, blue: 52.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Inchworm (Crayola), whose RBG values are (178, 236, 93), and has the specified opacity. + Returns a UIColor object representing the color Jonquil, whose RBG values are (244, 202, 22), 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 inchwormCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 178.0/255.0, green: 236.0/255.0, blue: 93.0/255.0, alpha: alpha ) } + class func jonquilColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 202.0/255.0, blue: 22.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Independence, whose RBG values are (76, 81, 109), and has the specified opacity. + Returns a UIColor object representing the color Jordy Blue, whose RBG values are (138, 185, 241), 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 independenceColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 76.0/255.0, green: 81.0/255.0, blue: 109.0/255.0, alpha: alpha ) } + class func jordyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 138.0/255.0, green: 185.0/255.0, blue: 241.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color India Green, whose RBG values are (19, 136, 8), and has the specified opacity. + Returns a UIColor object representing the color June Bud, whose RBG values are (189, 218, 87), 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 indiaGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 19.0/255.0, green: 136.0/255.0, blue: 8.0/255.0, alpha: alpha ) } + class func juneBudColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 189.0/255.0, green: 218.0/255.0, blue: 87.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Indian Red, whose RBG values are (205, 92, 92), and has the specified opacity. + Returns a UIColor object representing the color Jungle Green (Crayola), whose RBG values are (59, 176, 143), 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 indianRedColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 205.0/255.0, green: 92.0/255.0, blue: 92.0/255.0, alpha: alpha ) } + class func jungleGreenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 59.0/255.0, green: 176.0/255.0, blue: 143.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Indian Yellow, whose RBG values are (227, 168, 87), and has the specified opacity. + Returns a UIColor object representing the color KU Crimson, whose RBG values are (232, 0, 13), 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 indianYellowColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 227.0/255.0, green: 168.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + class func kUCrimsonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 232.0/255.0, green: 0.0/255.0, blue: 13.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Indigo, whose RBG values are (75, 0, 130), and has the specified opacity. + Returns a UIColor object representing the color Kelly Green, whose RBG values are (76, 187, 23), 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 indigoColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 75.0/255.0, green: 0.0/255.0, blue: 130.0/255.0, alpha: alpha ) } + class func kellyGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 76.0/255.0, green: 187.0/255.0, blue: 23.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Indigo (Crayola), whose RBG values are (93, 118, 203), and has the specified opacity. + Returns a UIColor object representing the color Kenyan Copper, whose RBG values are (124, 28, 5), 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 indigoCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 93.0/255.0, green: 118.0/255.0, blue: 203.0/255.0, alpha: alpha ) } + class func kenyanCopperColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 124.0/255.0, green: 28.0/255.0, blue: 5.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Indigo Dye, whose RBG values are (9, 31, 146), and has the specified opacity. + Returns a UIColor object representing the color Keppel, whose RBG values are (58, 176, 158), 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 indigoDyeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 9.0/255.0, green: 31.0/255.0, blue: 146.0/255.0, alpha: alpha ) } + class func keppelColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 58.0/255.0, green: 176.0/255.0, blue: 158.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color International Klein Blue, whose RBG values are (0, 47, 167), and has the specified opacity. + Returns a UIColor object representing the color Khaki, whose RBG values are (189, 183, 107), 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 internationalKleinBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 47.0/255.0, blue: 167.0/255.0, alpha: alpha ) } + class func khakiColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 189.0/255.0, green: 183.0/255.0, blue: 107.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color International Orange (Aerospace), whose RBG values are (255, 79, 0), and has the specified opacity. + Returns a UIColor object representing the color Khaki (X11) (Light Khaki), whose RBG values are (240, 230, 140), 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 internationalOrangeAerospaceColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 79.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func khakiX11LightKhakiColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 230.0/255.0, blue: 140.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color International Orange (Engineering), whose RBG values are (186, 22, 12), and has the specified opacity. + Returns a UIColor object representing the color Kobe, whose RBG values are (136, 45, 23), 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 internationalOrangeEngineeringColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 186.0/255.0, green: 22.0/255.0, blue: 12.0/255.0, alpha: alpha ) } + class func kobeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 136.0/255.0, green: 45.0/255.0, blue: 23.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color International Orange (Golden Gate Bridge), whose RBG values are (192, 54, 44), and has the specified opacity. + Returns a UIColor object representing the color Kobi, whose RBG values are (231, 159, 196), 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 internationalOrangeGoldenGateBridgeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 192.0/255.0, green: 54.0/255.0, blue: 44.0/255.0, alpha: alpha ) } + class func kobiColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 231.0/255.0, green: 159.0/255.0, blue: 196.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Iris, whose RBG values are (90, 79, 207), and has the specified opacity. + Returns a UIColor object representing the color Kombu Green, whose RBG values are (53, 66, 48), 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 irisColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 90.0/255.0, green: 79.0/255.0, blue: 207.0/255.0, alpha: alpha ) } + class func kombuGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 53.0/255.0, green: 66.0/255.0, blue: 48.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Irresistible, whose RBG values are (179, 68, 108), and has the specified opacity. + Returns a UIColor object representing the color La Salle Green, whose RBG values are (8, 120, 48), 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 irresistibleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 179.0/255.0, green: 68.0/255.0, blue: 108.0/255.0, alpha: alpha ) } + class func laSalleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 8.0/255.0, green: 120.0/255.0, blue: 48.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Isabelline, whose RBG values are (244, 240, 236), and has the specified opacity. + Returns a UIColor object representing the color Languid Lavender, whose RBG values are (214, 202, 221), 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 isabellineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 244.0/255.0, green: 240.0/255.0, blue: 236.0/255.0, alpha: alpha ) } + class func languidLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 214.0/255.0, green: 202.0/255.0, blue: 221.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Islamic Green, whose RBG values are (0, 144, 0), and has the specified opacity. + Returns a UIColor object representing the color Lapis Lazuli, whose RBG values are (38, 97, 156), 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 islamicGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 144.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func lapisLazuliColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 38.0/255.0, green: 97.0/255.0, blue: 156.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Italian Sky Blue, whose RBG values are (178, 255, 255), and has the specified opacity. + Returns a UIColor object representing the color Laser Lemon (Crayola), whose RBG values are (254, 254, 34), 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 italianSkyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 178.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func laserLemonCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 254.0/255.0, green: 254.0/255.0, blue: 34.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Ivory, whose RBG values are (255, 255, 240), and has the specified opacity. + Returns a UIColor object representing the color Laurel Green, whose RBG values are (169, 186, 157), 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 ivoryColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 240.0/255.0, alpha: alpha ) } + class func laurelGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 169.0/255.0, green: 186.0/255.0, blue: 157.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jade, whose RBG values are (0, 168, 107), and has the specified opacity. + Returns a UIColor object representing the color Lava, whose RBG values are (207, 16, 32), 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 jadeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 168.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func lavaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 207.0/255.0, green: 16.0/255.0, blue: 32.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Japanese Carmine, whose RBG values are (157, 41, 51), and has the specified opacity. + Returns a UIColor object representing the color Lavender (Crayola), whose RBG values are (252, 180, 213), 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 japaneseCarmineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 157.0/255.0, green: 41.0/255.0, blue: 51.0/255.0, alpha: alpha ) } + class func lavenderCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 252.0/255.0, green: 180.0/255.0, blue: 213.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Japanese Indigo, whose RBG values are (38, 67, 72), and has the specified opacity. + Returns a UIColor object representing the color Lavender (Floral), whose RBG values are (181, 126, 220), 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 japaneseIndigoColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 38.0/255.0, green: 67.0/255.0, blue: 72.0/255.0, alpha: alpha ) } + class func lavenderFloralColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 181.0/255.0, green: 126.0/255.0, blue: 220.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Japanese Violet, whose RBG values are (91, 50, 86), and has the specified opacity. + Returns a UIColor object representing the color Lavender (Web), whose RBG values are (230, 230, 250), 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 japaneseVioletColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 91.0/255.0, green: 50.0/255.0, blue: 86.0/255.0, alpha: alpha ) } + class func lavenderWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 230.0/255.0, blue: 250.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jasmine, whose RBG values are (248, 222, 126), and has the specified opacity. + Returns a UIColor object representing the color Lavender Blue, whose RBG values are (204, 204, 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 jasmineColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 248.0/255.0, green: 222.0/255.0, blue: 126.0/255.0, alpha: alpha ) } + class func lavenderBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 204.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jasper, whose RBG values are (215, 59, 62), and has the specified opacity. + Returns a UIColor object representing the color Lavender Blush, whose RBG values are (255, 240, 245), 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 jasperColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 215.0/255.0, green: 59.0/255.0, blue: 62.0/255.0, alpha: alpha ) } + class func lavenderBlushColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 240.0/255.0, blue: 245.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jawad/Chicken Color (HTML/CSS) (Khaki), whose RBG values are (195, 176, 145), and has the specified opacity. + Returns a UIColor object representing the color Lavender Gray, whose RBG values are (196, 195, 208), 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 jawadChickenColorHTMLCSSKhakiColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 195.0/255.0, green: 176.0/255.0, blue: 145.0/255.0, alpha: alpha ) } + class func lavenderGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 196.0/255.0, green: 195.0/255.0, blue: 208.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jazzberry Jam (Crayola), whose RBG values are (202, 55, 103), and has the specified opacity. + Returns a UIColor object representing the color Lavender Indigo, whose RBG values are (148, 87, 235), 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 jazzberryJamCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 202.0/255.0, green: 55.0/255.0, blue: 103.0/255.0, alpha: alpha ) } + class func lavenderIndigoColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 148.0/255.0, green: 87.0/255.0, blue: 235.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jelly Bean, whose RBG values are (218, 97, 78), and has the specified opacity. + Returns a UIColor object representing the color Lavender Magenta, whose RBG values are (238, 130, 238), 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 jellyBeanColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 218.0/255.0, green: 97.0/255.0, blue: 78.0/255.0, alpha: alpha ) } + class func lavenderMagentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 238.0/255.0, green: 130.0/255.0, blue: 238.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jet, whose RBG values are (52, 52, 52), and has the specified opacity. + Returns a UIColor object representing the color Lavender Mist, whose RBG values are (230, 230, 250), 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 jetColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 52.0/255.0, green: 52.0/255.0, blue: 52.0/255.0, alpha: alpha ) } + class func lavenderMistColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 230.0/255.0, blue: 250.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jonquil, whose RBG values are (244, 202, 22), and has the specified opacity. + Returns a UIColor object representing the color Lavender Pink, whose RBG values are (251, 174, 210), 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 jonquilColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 244.0/255.0, green: 202.0/255.0, blue: 22.0/255.0, alpha: alpha ) } + class func lavenderPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 174.0/255.0, blue: 210.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jordy Blue, whose RBG values are (138, 185, 241), and has the specified opacity. + Returns a UIColor object representing the color Lavender Purple, whose RBG values are (150, 123, 182), 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 jordyBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 138.0/255.0, green: 185.0/255.0, blue: 241.0/255.0, alpha: alpha ) } + class func lavenderPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 150.0/255.0, green: 123.0/255.0, blue: 182.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color June Bud, whose RBG values are (189, 218, 87), and has the specified opacity. + Returns a UIColor object representing the color Lavender Rose, whose RBG values are (251, 160, 227), 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 juneBudColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 189.0/255.0, green: 218.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + class func lavenderRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 160.0/255.0, blue: 227.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Jungle Green (Crayola), whose RBG values are (59, 176, 143), and has the specified opacity. + Returns a UIColor object representing the color Lawn Green, whose RBG values are (124, 252, 0), 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 jungleGreenCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 59.0/255.0, green: 176.0/255.0, blue: 143.0/255.0, alpha: alpha ) } + class func lawnGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 124.0/255.0, green: 252.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color KU Crimson, whose RBG values are (232, 0, 13), and has the specified opacity. + Returns a UIColor object representing the color Lemon, whose RBG values are (255, 247, 0), 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 kUCrimsonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 232.0/255.0, green: 0.0/255.0, blue: 13.0/255.0, alpha: alpha ) } + class func lemonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 247.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Kelly Green, whose RBG values are (76, 187, 23), and has the specified opacity. + Returns a UIColor object representing the color Lemon Yellow (Crayola), whose RBG values are (255, 244, 79), 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 kellyGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 76.0/255.0, green: 187.0/255.0, blue: 23.0/255.0, alpha: alpha ) } + class func lemonYellowCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 244.0/255.0, blue: 79.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Kenyan Copper, whose RBG values are (124, 28, 5), and has the specified opacity. + Returns a UIColor object representing the color Lemon Chiffon, whose RBG values are (255, 250, 205), 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 kenyanCopperColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 124.0/255.0, green: 28.0/255.0, blue: 5.0/255.0, alpha: alpha ) } + class func lemonChiffonColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 250.0/255.0, blue: 205.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Keppel, whose RBG values are (58, 176, 158), and has the specified opacity. + Returns a UIColor object representing the color Lemon Curry, whose RBG values are (204, 160, 29), 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 keppelColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 58.0/255.0, green: 176.0/255.0, blue: 158.0/255.0, alpha: alpha ) } + class func lemonCurryColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 160.0/255.0, blue: 29.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Khaki, whose RBG values are (189, 183, 107), and has the specified opacity. + Returns a UIColor object representing the color Lemon Glacier, whose RBG values are (253, 255, 0), 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 khakiColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 189.0/255.0, green: 183.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + class func lemonGlacierColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 253.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Khaki (X11) (Light Khaki), whose RBG values are (240, 230, 140), and has the specified opacity. + Returns a UIColor object representing the color Lemon Lime, whose RBG values are (227, 255, 0), 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 khakiX11LightKhakiColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 240.0/255.0, green: 230.0/255.0, blue: 140.0/255.0, alpha: alpha ) } + class func lemonLimeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 227.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Kobe, whose RBG values are (136, 45, 23), and has the specified opacity. + Returns a UIColor object representing the color Lemon Meringue, whose RBG values are (246, 234, 190), 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 kobeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 136.0/255.0, green: 45.0/255.0, blue: 23.0/255.0, alpha: alpha ) } + class func lemonMeringueColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 246.0/255.0, green: 234.0/255.0, blue: 190.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Kobi, whose RBG values are (231, 159, 196), and has the specified opacity. + Returns a UIColor object representing the color Lenurple, whose RBG values are (186, 147, 216), 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 kobiColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 231.0/255.0, green: 159.0/255.0, blue: 196.0/255.0, alpha: alpha ) } + class func lenurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 186.0/255.0, green: 147.0/255.0, blue: 216.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Kombu Green, whose RBG values are (53, 66, 48), and has the specified opacity. + Returns a UIColor object representing the color Liberty, whose RBG values are (84, 90, 167), 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 kombuGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 53.0/255.0, green: 66.0/255.0, blue: 48.0/255.0, alpha: alpha ) } + class func libertyColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 84.0/255.0, green: 90.0/255.0, blue: 167.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color La Salle Green, whose RBG values are (8, 120, 48), and has the specified opacity. + Returns a UIColor object representing the color Licorice, whose RBG values are (26, 17, 16), 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 laSalleGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 8.0/255.0, green: 120.0/255.0, blue: 48.0/255.0, alpha: alpha ) } + class func licoriceColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 26.0/255.0, green: 17.0/255.0, blue: 16.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Languid Lavender, whose RBG values are (214, 202, 221), and has the specified opacity. + Returns a UIColor object representing the color Light Blue (Crayola), whose RBG values are (173, 216, 230), 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 languidLavenderColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 214.0/255.0, green: 202.0/255.0, blue: 221.0/255.0, alpha: alpha ) } + class func lightBlueCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 173.0/255.0, green: 216.0/255.0, blue: 230.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lapis Lazuli, whose RBG values are (38, 97, 156), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 100, whose RBG values are (179, 229, 252), 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 lapisLazuliColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 38.0/255.0, green: 97.0/255.0, blue: 156.0/255.0, alpha: alpha ) } + class func lightBlue100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 179.0/255.0, green: 229.0/255.0, blue: 252.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Laser Lemon (Crayola), whose RBG values are (254, 254, 34), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 200, whose RBG values are (129, 212, 250), 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 laserLemonCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 254.0/255.0, green: 254.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + class func lightBlue200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 129.0/255.0, green: 212.0/255.0, blue: 250.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Laurel Green, whose RBG values are (169, 186, 157), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 300, whose RBG values are (79, 195, 247), 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 laurelGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 169.0/255.0, green: 186.0/255.0, blue: 157.0/255.0, alpha: alpha ) } + class func lightBlue300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 79.0/255.0, green: 195.0/255.0, blue: 247.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lava, whose RBG values are (207, 16, 32), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 400, whose RBG values are (41, 182, 246), 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 lavaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 207.0/255.0, green: 16.0/255.0, blue: 32.0/255.0, alpha: alpha ) } + class func lightBlue400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 41.0/255.0, green: 182.0/255.0, blue: 246.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender (Crayola), whose RBG values are (252, 180, 213), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 50, whose RBG values are (225, 245, 254), 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 lavenderCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 252.0/255.0, green: 180.0/255.0, blue: 213.0/255.0, alpha: alpha ) } + class func lightBlue50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 225.0/255.0, green: 245.0/255.0, blue: 254.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender (Floral), whose RBG values are (181, 126, 220), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 500, whose RBG values are (3, 169, 244), 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 lavenderFloralColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 181.0/255.0, green: 126.0/255.0, blue: 220.0/255.0, alpha: alpha ) } + class func lightBlue500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 3.0/255.0, green: 169.0/255.0, blue: 244.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender (Web), whose RBG values are (230, 230, 250), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 600, whose RBG values are (3, 155, 229), 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 lavenderWebColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 230.0/255.0, green: 230.0/255.0, blue: 250.0/255.0, alpha: alpha ) } + class func lightBlue600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 3.0/255.0, green: 155.0/255.0, blue: 229.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender Blue, whose RBG values are (204, 204, 255), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 700, whose RBG values are (2, 136, 209), 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 lavenderBlueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 204.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + class func lightBlue700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 2.0/255.0, green: 136.0/255.0, blue: 209.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender Blush, whose RBG values are (255, 240, 245), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 800, whose RBG values are (2, 119, 189), 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 lavenderBlushColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 240.0/255.0, blue: 245.0/255.0, alpha: alpha ) } + class func lightBlue800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 2.0/255.0, green: 119.0/255.0, blue: 189.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender Gray, whose RBG values are (196, 195, 208), and has the specified opacity. + Returns a UIColor object representing the color Light Blue 900, whose RBG values are (1, 87, 155), 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 lavenderGrayColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 196.0/255.0, green: 195.0/255.0, blue: 208.0/255.0, alpha: alpha ) } + class func lightBlue900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 1.0/255.0, green: 87.0/255.0, blue: 155.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender Indigo, whose RBG values are (148, 87, 235), and has the specified opacity. + Returns a UIColor object representing the color Light Blue A100, whose RBG values are (128, 216, 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 lavenderIndigoColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 148.0/255.0, green: 87.0/255.0, blue: 235.0/255.0, alpha: alpha ) } + class func lightBlueA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 216.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender Magenta, whose RBG values are (238, 130, 238), and has the specified opacity. + Returns a UIColor object representing the color Light Blue A200, whose RBG values are (64, 196, 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 lavenderMagentaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 238.0/255.0, green: 130.0/255.0, blue: 238.0/255.0, alpha: alpha ) } + class func lightBlueA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 64.0/255.0, green: 196.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender Mist, whose RBG values are (230, 230, 250), and has the specified opacity. + Returns a UIColor object representing the color Light Blue A400, whose RBG values are (0, 176, 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 lavenderMistColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 230.0/255.0, green: 230.0/255.0, blue: 250.0/255.0, alpha: alpha ) } + class func lightBlueA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 176.0/255.0, blue: 255.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender Pink, whose RBG values are (251, 174, 210), and has the specified opacity. + Returns a UIColor object representing the color Light Blue A700, whose RBG values are (0, 145, 234), 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 lavenderPinkColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 251.0/255.0, green: 174.0/255.0, blue: 210.0/255.0, alpha: alpha ) } + class func lightBlueA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 145.0/255.0, blue: 234.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender Purple, whose RBG values are (150, 123, 182), and has the specified opacity. + Returns a UIColor object representing the color Light French Beige, whose RBG values are (200, 173, 127), 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 lavenderPurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 150.0/255.0, green: 123.0/255.0, blue: 182.0/255.0, alpha: alpha ) } + class func lightFrenchBeigeColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 200.0/255.0, green: 173.0/255.0, blue: 127.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lavender Rose, whose RBG values are (251, 160, 227), and has the specified opacity. + Returns a UIColor object representing the color Light Green 100, whose RBG values are (220, 237, 200), 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 lavenderRoseColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 251.0/255.0, green: 160.0/255.0, blue: 227.0/255.0, alpha: alpha ) } + class func lightGreen100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 220.0/255.0, green: 237.0/255.0, blue: 200.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lawn Green, whose RBG values are (124, 252, 0), and has the specified opacity. + Returns a UIColor object representing the color Light Green 200, whose RBG values are (197, 225, 165), 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 lawnGreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 124.0/255.0, green: 252.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func lightGreen200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 197.0/255.0, green: 225.0/255.0, blue: 165.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lemon, whose RBG values are (255, 247, 0), and has the specified opacity. + Returns a UIColor object representing the color Light Green 300, whose RBG values are (174, 213, 129), 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 lemonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 247.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func lightGreen300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 174.0/255.0, green: 213.0/255.0, blue: 129.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lemon Yellow (Crayola), whose RBG values are (255, 244, 79), and has the specified opacity. + Returns a UIColor object representing the color Light Green 400, whose RBG values are (156, 204, 101), 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 lemonYellowCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 244.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + class func lightGreen400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 156.0/255.0, green: 204.0/255.0, blue: 101.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lemon Chiffon, whose RBG values are (255, 250, 205), and has the specified opacity. + Returns a UIColor object representing the color Light Green 50, whose RBG values are (241, 248, 233), 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 lemonChiffonColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 255.0/255.0, green: 250.0/255.0, blue: 205.0/255.0, alpha: alpha ) } + class func lightGreen50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 241.0/255.0, green: 248.0/255.0, blue: 233.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lemon Curry, whose RBG values are (204, 160, 29), and has the specified opacity. + Returns a UIColor object representing the color Light Green 500, whose RBG values are (139, 195, 74), 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 lemonCurryColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 204.0/255.0, green: 160.0/255.0, blue: 29.0/255.0, alpha: alpha ) } + class func lightGreen500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 139.0/255.0, green: 195.0/255.0, blue: 74.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lemon Glacier, whose RBG values are (253, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Light Green 600, whose RBG values are (124, 179, 66), 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 lemonGlacierColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 253.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func lightGreen600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 124.0/255.0, green: 179.0/255.0, blue: 66.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lemon Lime, whose RBG values are (227, 255, 0), and has the specified opacity. + Returns a UIColor object representing the color Light Green 700, whose RBG values are (104, 159, 56), 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 lemonLimeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 227.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func lightGreen700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 104.0/255.0, green: 159.0/255.0, blue: 56.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lemon Meringue, whose RBG values are (246, 234, 190), and has the specified opacity. + Returns a UIColor object representing the color Light Green 800, whose RBG values are (85, 139, 47), 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 lemonMeringueColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 246.0/255.0, green: 234.0/255.0, blue: 190.0/255.0, alpha: alpha ) } + class func lightGreen800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 85.0/255.0, green: 139.0/255.0, blue: 47.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Lenurple, whose RBG values are (186, 147, 216), and has the specified opacity. + Returns a UIColor object representing the color Light Green 900, whose RBG values are (51, 105, 30), 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 lenurpleColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 186.0/255.0, green: 147.0/255.0, blue: 216.0/255.0, alpha: alpha ) } + class func lightGreen900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 51.0/255.0, green: 105.0/255.0, blue: 30.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Liberty, whose RBG values are (84, 90, 167), and has the specified opacity. + Returns a UIColor object representing the color Light Green A100, whose RBG values are (204, 255, 144), 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 libertyColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 84.0/255.0, green: 90.0/255.0, blue: 167.0/255.0, alpha: alpha ) } + class func lightGreenA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 255.0/255.0, blue: 144.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Licorice, whose RBG values are (26, 17, 16), and has the specified opacity. + Returns a UIColor object representing the color Light Green A200, whose RBG values are (178, 255, 89), 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 licoriceColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 26.0/255.0, green: 17.0/255.0, blue: 16.0/255.0, alpha: alpha ) } + class func lightGreenA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 255.0/255.0, blue: 89.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Light Blue (Crayola), whose RBG values are (173, 216, 230), and has the specified opacity. + Returns a UIColor object representing the color Light Green A400, whose RBG values are (118, 255, 3), 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 lightBlueCrayolaColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 173.0/255.0, green: 216.0/255.0, blue: 230.0/255.0, alpha: alpha ) } + class func lightGreenA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 118.0/255.0, green: 255.0/255.0, blue: 3.0/255.0, alpha: alpha ) } /** - Returns a UIColor object representing the color Light French Beige, whose RBG values are (200, 173, 127), and has the specified opacity. + Returns a UIColor object representing the color Light Green A700, whose RBG values are (100, 221, 23), 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 lightFrenchBeigeColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 200.0/255.0, green: 173.0/255.0, blue: 127.0/255.0, alpha: alpha ) } + class func lightGreenA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 100.0/255.0, green: 221.0/255.0, blue: 23.0/255.0, alpha: alpha ) } /** @@ -7691,8 +9563,176 @@ extension UIColor { :returns: The UIColor object */ - class func limeWebX11GreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + class func limeWebX11GreenColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 100, whose RBG values are (240, 244, 195), 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 lime100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 244.0/255.0, blue: 195.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 200, whose RBG values are (230, 238, 156), 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 lime200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 238.0/255.0, blue: 156.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 300, whose RBG values are (220, 231, 117), 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 lime300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 220.0/255.0, green: 231.0/255.0, blue: 117.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 400, whose RBG values are (212, 225, 87), 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 lime400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 212.0/255.0, green: 225.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 50, whose RBG values are (249, 251, 231), 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 lime50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 249.0/255.0, green: 251.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 500, whose RBG values are (205, 220, 57), 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 lime500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 205.0/255.0, green: 220.0/255.0, blue: 57.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 600, whose RBG values are (192, 202, 51), 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 lime600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 192.0/255.0, green: 202.0/255.0, blue: 51.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 700, whose RBG values are (175, 180, 43), 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 lime700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 175.0/255.0, green: 180.0/255.0, blue: 43.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 800, whose RBG values are (158, 157, 36), 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 lime800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 158.0/255.0, green: 157.0/255.0, blue: 36.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 900, whose RBG values are (130, 119, 23), 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 lime900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 130.0/255.0, green: 119.0/255.0, blue: 23.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime A100, whose RBG values are (244, 255, 129), 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 limeA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 255.0/255.0, blue: 129.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime A200, whose RBG values are (238, 255, 65), 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 limeA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 238.0/255.0, green: 255.0/255.0, blue: 65.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime A400, whose RBG values are (198, 255, 0), 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 limeA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 198.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime A700, whose RBG values are (174, 234, 0), 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 limeA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 174.0/255.0, green: 234.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** @@ -9327,6 +11367,174 @@ extension UIColor { return UIColor.init ( red: 255.0/255.0, green: 165.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + /** + Returns a UIColor object representing the color Orange 100, whose RBG values are (255, 224, 178), 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 orange100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 224.0/255.0, blue: 178.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 200, whose RBG values are (255, 204, 128), 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 orange200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 204.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 300, whose RBG values are (255, 183, 77), 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 orange300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 183.0/255.0, blue: 77.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 400, whose RBG values are (255, 167, 38), 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 orange400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 167.0/255.0, blue: 38.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 50, whose RBG values are (255, 243, 224), 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 orange50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 243.0/255.0, blue: 224.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 500, whose RBG values are (255, 152, 0), 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 orange500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 152.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 600, whose RBG values are (251, 140, 0), 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 orange600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 140.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 700, whose RBG values are (245, 124, 0), 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 orange700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 245.0/255.0, green: 124.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 800, whose RBG values are (239, 108, 0), 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 orange800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 108.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 900, whose RBG values are (230, 81, 0), 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 orange900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 81.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange A100, whose RBG values are (255, 209, 128), 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 orangeA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 209.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange A200, whose RBG values are (255, 171, 64), 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 orangeA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 171.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange A400, whose RBG values are (255, 145, 0), 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 orangeA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 145.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange A700, whose RBG values are (255, 109, 0), 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 orangeA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 109.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + /** Returns a UIColor object representing the color Orange Red (Crayola), whose RBG values are (255, 43, 43), and has the specified opacity. @@ -10427,8 +12635,176 @@ extension UIColor { :returns: The UIColor object */ - class func pinkPantoneColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 215.0/255.0, green: 72.0/255.0, blue: 148.0/255.0, alpha: alpha ) } + class func pinkPantoneColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 215.0/255.0, green: 72.0/255.0, blue: 148.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 100, whose RBG values are (248, 187, 208), 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 pink100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 248.0/255.0, green: 187.0/255.0, blue: 208.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 200, whose RBG values are (244, 143, 177), 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 pink200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 143.0/255.0, blue: 177.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 300, whose RBG values are (240, 98, 146), 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 pink300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 98.0/255.0, blue: 146.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 400, whose RBG values are (236, 64, 122), 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 pink400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 236.0/255.0, green: 64.0/255.0, blue: 122.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 50, whose RBG values are (252, 228, 236), 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 pink50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 252.0/255.0, green: 228.0/255.0, blue: 236.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 500, whose RBG values are (233, 30, 99), 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 pink500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 233.0/255.0, green: 30.0/255.0, blue: 99.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 600, whose RBG values are (216, 27, 96), 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 pink600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 216.0/255.0, green: 27.0/255.0, blue: 96.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 700, whose RBG values are (194, 24, 91), 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 pink700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 194.0/255.0, green: 24.0/255.0, blue: 91.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 800, whose RBG values are (173, 20, 87), 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 pink800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 173.0/255.0, green: 20.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 900, whose RBG values are (136, 14, 79), 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 pink900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 136.0/255.0, green: 14.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink A100, whose RBG values are (255, 128, 171), 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 pinkA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 128.0/255.0, blue: 171.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink A200, whose RBG values are (255, 64, 129), 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 pinkA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 64.0/255.0, blue: 129.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink A400, whose RBG values are (245, 0, 87), 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 pinkA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 245.0/255.0, green: 0.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink A700, whose RBG values are (197, 17, 98), 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 pinkA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 197.0/255.0, green: 17.0/255.0, blue: 98.0/255.0, alpha: alpha ) } /** @@ -10767,6 +13143,174 @@ extension UIColor { return UIColor.init ( red: 160.0/255.0, green: 32.0/255.0, blue: 240.0/255.0, alpha: alpha ) } + /** + Returns a UIColor object representing the color Purple 100, whose RBG values are (225, 190, 231), 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 purple100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 225.0/255.0, green: 190.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 200, whose RBG values are (206, 147, 216), 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 purple200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 206.0/255.0, green: 147.0/255.0, blue: 216.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 300, whose RBG values are (186, 104, 200), 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 purple300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 186.0/255.0, green: 104.0/255.0, blue: 200.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 400, whose RBG values are (171, 71, 188), 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 purple400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 171.0/255.0, green: 71.0/255.0, blue: 188.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 50, whose RBG values are (243, 229, 245), 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 purple50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 243.0/255.0, green: 229.0/255.0, blue: 245.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 500, whose RBG values are (156, 39, 176), 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 purple500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 156.0/255.0, green: 39.0/255.0, blue: 176.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 600, whose RBG values are (142, 36, 170), 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 purple600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 142.0/255.0, green: 36.0/255.0, blue: 170.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 700, whose RBG values are (123, 31, 162), 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 purple700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 123.0/255.0, green: 31.0/255.0, blue: 162.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 800, whose RBG values are (106, 27, 154), 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 purple800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 106.0/255.0, green: 27.0/255.0, blue: 154.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 900, whose RBG values are (74, 20, 140), 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 purple900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 74.0/255.0, green: 20.0/255.0, blue: 140.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple A100, whose RBG values are (234, 128, 252), 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 purpleA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 234.0/255.0, green: 128.0/255.0, blue: 252.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple A200, whose RBG values are (224, 64, 251), 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 purpleA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 224.0/255.0, green: 64.0/255.0, blue: 251.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple A400, whose RBG values are (213, 0, 249), 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 purpleA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 213.0/255.0, green: 0.0/255.0, blue: 249.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple A700, whose RBG values are (170, 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 purpleA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 170.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + /** Returns a UIColor object representing the color Purple Heart, whose RBG values are (105, 53, 156), and has the specified opacity. @@ -11164,15 +13708,183 @@ extension UIColor { /** - Returns a UIColor object representing the color Red (RYB), whose RBG values are (254, 39, 18), and has the specified opacity. + Returns a UIColor object representing the color Red (RYB), whose RBG values are (254, 39, 18), 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 redRYBColor ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 254.0/255.0, green: 39.0/255.0, blue: 18.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 100, whose RBG values are (255, 205, 210), 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 red100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 205.0/255.0, blue: 210.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 200, whose RBG values are (239, 154, 154), 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 red200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 154.0/255.0, blue: 154.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 300, whose RBG values are (229, 115, 115), 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 red300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 229.0/255.0, green: 115.0/255.0, blue: 115.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 400, whose RBG values are (239, 83, 80), 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 red400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 83.0/255.0, blue: 80.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 50, whose RBG values are (255, 235, 238), 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 red50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 235.0/255.0, blue: 238.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 500, whose RBG values are (244, 67, 54), 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 red500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 67.0/255.0, blue: 54.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 600, whose RBG values are (229, 57, 53), 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 red600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 229.0/255.0, green: 57.0/255.0, blue: 53.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 700, whose RBG values are (211, 47, 47), 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 red700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 211.0/255.0, green: 47.0/255.0, blue: 47.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 800, whose RBG values are (198, 40, 40), 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 red800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 198.0/255.0, green: 40.0/255.0, blue: 40.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 900, whose RBG values are (183, 28, 28), 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 red900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 183.0/255.0, green: 28.0/255.0, blue: 28.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red A100, whose RBG values are (255, 138, 128), 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 redA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 138.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red A200, whose RBG values are (255, 82, 82), 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 redA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 82.0/255.0, blue: 82.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red A400, whose RBG values are (255, 23, 68), 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 redA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 23.0/255.0, blue: 68.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red A700, whose RBG values are (213, 0, 0), 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 redRYBColor ( alpha: CGFloat = 1.0 ) -> UIColor { - return UIColor.init ( red: 254.0/255.0, green: 39.0/255.0, blue: 18.0/255.0, alpha: alpha ) } + class func redA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 213.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } /** @@ -13227,6 +15939,174 @@ extension UIColor { return UIColor.init ( red: 0.0/255.0, green: 128.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + /** + Returns a UIColor object representing the color Teal 100, whose RBG values are (178, 223, 219), 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 teal100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 223.0/255.0, blue: 219.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 200, whose RBG values are (128, 203, 196), 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 teal200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 203.0/255.0, blue: 196.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 300, whose RBG values are (77, 182, 172), 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 teal300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 77.0/255.0, green: 182.0/255.0, blue: 172.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 400, whose RBG values are (38, 166, 154), 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 teal400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 38.0/255.0, green: 166.0/255.0, blue: 154.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 50, whose RBG values are (224, 242, 241), 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 teal50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 224.0/255.0, green: 242.0/255.0, blue: 241.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 500, whose RBG values are (0, 150, 136), 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 teal500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 150.0/255.0, blue: 136.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 600, whose RBG values are (0, 137, 123), 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 teal600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 137.0/255.0, blue: 123.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 700, whose RBG values are (0, 121, 107), 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 teal700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 121.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 800, whose RBG values are (0, 105, 92), 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 teal800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 105.0/255.0, blue: 92.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 900, whose RBG values are (0, 77, 64), 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 teal900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 77.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal A100, whose RBG values are (167, 255, 235), 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 tealA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 167.0/255.0, green: 255.0/255.0, blue: 235.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal A200, whose RBG values are (100, 255, 218), 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 tealA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 100.0/255.0, green: 255.0/255.0, blue: 218.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal A400, whose RBG values are (29, 233, 182), 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 tealA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 29.0/255.0, green: 233.0/255.0, blue: 182.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal A700, whose RBG values are (0, 191, 165), 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 tealA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 191.0/255.0, blue: 165.0/255.0, alpha: alpha ) } + + /** Returns a UIColor object representing the color Teal Blue (Crayola), whose RBG values are (24, 167, 181), and has the specified opacity. @@ -14907,6 +17787,174 @@ extension UIColor { return UIColor.init ( red: 254.0/255.0, green: 254.0/255.0, blue: 51.0/255.0, alpha: alpha ) } + /** + Returns a UIColor object representing the color Yellow 100, whose RBG values are (255, 249, 196), 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 yellow100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 249.0/255.0, blue: 196.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 200, whose RBG values are (255, 245, 157), 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 yellow200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 245.0/255.0, blue: 157.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 300, whose RBG values are (255, 241, 118), 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 yellow300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 241.0/255.0, blue: 118.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 400, whose RBG values are (255, 238, 88), 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 yellow400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 238.0/255.0, blue: 88.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 50, whose RBG values are (255, 253, 231), 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 yellow50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 253.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 500, whose RBG values are (255, 235, 59), 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 yellow500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 235.0/255.0, blue: 59.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 600, whose RBG values are (253, 216, 53), 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 yellow600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 253.0/255.0, green: 216.0/255.0, blue: 53.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 700, whose RBG values are (251, 192, 45), 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 yellow700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 192.0/255.0, blue: 45.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 800, whose RBG values are (249, 168, 37), 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 yellow800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 249.0/255.0, green: 168.0/255.0, blue: 37.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 900, whose RBG values are (245, 127, 23), 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 yellow900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 245.0/255.0, green: 127.0/255.0, blue: 23.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow A100, whose RBG values are (255, 255, 141), 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 yellowA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 141.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow A200, whose RBG values are (255, 255, 0), 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 yellowA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow A400, whose RBG values are (255, 234, 0), 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 yellowA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 234.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow A700, whose RBG values are (255, 214, 0), 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 yellowA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 214.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + /** Returns a UIColor object representing the color Yellow Green (Crayola), whose RBG values are (197, 227, 132), and has the specified opacity. diff --git a/UIColor+RainbowGoogleDesign.swift b/UIColor+RainbowGoogleDesign.swift new file mode 100644 index 0000000..7ad3a5c --- /dev/null +++ b/UIColor+RainbowGoogleDesign.swift @@ -0,0 +1,3079 @@ +// +// UIColor+GoogleDesign.swift +// Rainbow Google Design UIColor Extension +// +// Created by Reid Gravelle on 2015-04-12. +// Copyright (c) 2015 Northern Realities Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import UIKit + +extension UIColor { + /** + Returns a UIColor object representing the color Amber 100, whose RBG values are (255, 236, 179), 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 amber100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 236.0/255.0, blue: 179.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 200, whose RBG values are (255, 224, 130), 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 amber200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 224.0/255.0, blue: 130.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 300, whose RBG values are (255, 213, 79), 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 amber300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 213.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 400, whose RBG values are (255, 202, 40), 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 amber400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 202.0/255.0, blue: 40.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 50, whose RBG values are (255, 248, 225), 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 amber50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 248.0/255.0, blue: 225.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 500, whose RBG values are (255, 193, 7), 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 amber500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 193.0/255.0, blue: 7.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 600, whose RBG values are (255, 179, 0), 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 amber600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 179.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 700, whose RBG values are (255, 160, 0), 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 amber700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 160.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 800, whose RBG values are (255, 143, 0), 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 amber800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 143.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber 900, whose RBG values are (255, 111, 0), 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 amber900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 111.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber A100, whose RBG values are (255, 229, 127), 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 amberA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 229.0/255.0, blue: 127.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber A200, whose RBG values are (255, 215, 64), 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 amberA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 215.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber A400, whose RBG values are (255, 196, 0), 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 amberA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 196.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Amber A700, whose RBG values are (255, 171, 0), 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 amberA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 171.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 100, whose RBG values are (187, 222, 251), 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 blue100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 187.0/255.0, green: 222.0/255.0, blue: 251.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 200, whose RBG values are (144, 202, 249), 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 blue200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 144.0/255.0, green: 202.0/255.0, blue: 249.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 300, whose RBG values are (100, 181, 246), 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 blue300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 100.0/255.0, green: 181.0/255.0, blue: 246.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 400, whose RBG values are (66, 165, 245), 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 blue400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 66.0/255.0, green: 165.0/255.0, blue: 245.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 50, whose RBG values are (227, 242, 253), 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 blue50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 227.0/255.0, green: 242.0/255.0, blue: 253.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 500, whose RBG values are (33, 150, 243), 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 blue500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 33.0/255.0, green: 150.0/255.0, blue: 243.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 600, whose RBG values are (30, 136, 229), 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 blue600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 30.0/255.0, green: 136.0/255.0, blue: 229.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 700, whose RBG values are (25, 118, 210), 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 blue700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 25.0/255.0, green: 118.0/255.0, blue: 210.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 800, whose RBG values are (21, 101, 192), 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 blue800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 21.0/255.0, green: 101.0/255.0, blue: 192.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue 900, whose RBG values are (13, 71, 161), 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 blue900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 13.0/255.0, green: 71.0/255.0, blue: 161.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue A100, whose RBG values are (130, 177, 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 blueA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 130.0/255.0, green: 177.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue A200, whose RBG values are (68, 138, 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 blueA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 68.0/255.0, green: 138.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue A400, whose RBG values are (41, 121, 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 blueA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 41.0/255.0, green: 121.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue A700, whose RBG values are (41, 98, 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 blueA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 41.0/255.0, green: 98.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 100, whose RBG values are (207, 216, 220), 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 blueGrey100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 207.0/255.0, green: 216.0/255.0, blue: 220.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 200, whose RBG values are (176, 190, 197), 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 blueGrey200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 176.0/255.0, green: 190.0/255.0, blue: 197.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 300, whose RBG values are (144, 164, 174), 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 blueGrey300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 144.0/255.0, green: 164.0/255.0, blue: 174.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 400, whose RBG values are (120, 144, 156), 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 blueGrey400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 120.0/255.0, green: 144.0/255.0, blue: 156.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 50, whose RBG values are (236, 239, 241), 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 blueGrey50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 236.0/255.0, green: 239.0/255.0, blue: 241.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 500, whose RBG values are (96, 125, 139), 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 blueGrey500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 96.0/255.0, green: 125.0/255.0, blue: 139.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 600, whose RBG values are (84, 110, 122), 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 blueGrey600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 84.0/255.0, green: 110.0/255.0, blue: 122.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 700, whose RBG values are (69, 90, 100), 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 blueGrey700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 69.0/255.0, green: 90.0/255.0, blue: 100.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 800, whose RBG values are (55, 71, 79), 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 blueGrey800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 55.0/255.0, green: 71.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Blue Grey 900, whose RBG values are (38, 50, 56), 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 blueGrey900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 38.0/255.0, green: 50.0/255.0, blue: 56.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 100, whose RBG values are (215, 204, 200), 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 brown100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 215.0/255.0, green: 204.0/255.0, blue: 200.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 200, whose RBG values are (188, 170, 164), 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 brown200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 188.0/255.0, green: 170.0/255.0, blue: 164.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 300, whose RBG values are (161, 136, 127), 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 brown300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 161.0/255.0, green: 136.0/255.0, blue: 127.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 400, whose RBG values are (141, 110, 99), 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 brown400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 141.0/255.0, green: 110.0/255.0, blue: 99.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 50, whose RBG values are (239, 235, 233), 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 brown50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 235.0/255.0, blue: 233.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 500, whose RBG values are (121, 85, 72), 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 brown500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 121.0/255.0, green: 85.0/255.0, blue: 72.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 600, whose RBG values are (109, 76, 65), 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 brown600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 109.0/255.0, green: 76.0/255.0, blue: 65.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 700, whose RBG values are (93, 64, 55), 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 brown700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 93.0/255.0, green: 64.0/255.0, blue: 55.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 800, whose RBG values are (78, 52, 46), 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 brown800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 78.0/255.0, green: 52.0/255.0, blue: 46.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Brown 900, whose RBG values are (62, 39, 35), 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 brown900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 62.0/255.0, green: 39.0/255.0, blue: 35.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 100, whose RBG values are (178, 235, 242), 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 cyan100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 235.0/255.0, blue: 242.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 200, whose RBG values are (128, 222, 234), 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 cyan200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 222.0/255.0, blue: 234.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 300, whose RBG values are (77, 208, 225), 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 cyan300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 77.0/255.0, green: 208.0/255.0, blue: 225.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 400, whose RBG values are (38, 198, 218), 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 cyan400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 38.0/255.0, green: 198.0/255.0, blue: 218.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 50, whose RBG values are (224, 247, 250), 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 cyan50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 224.0/255.0, green: 247.0/255.0, blue: 250.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 500, whose RBG values are (0, 188, 212), 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 cyan500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 188.0/255.0, blue: 212.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 600, whose RBG values are (0, 172, 193), 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 cyan600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 172.0/255.0, blue: 193.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 700, whose RBG values are (0, 151, 167), 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 cyan700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 151.0/255.0, blue: 167.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 800, whose RBG values are (0, 131, 143), 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 cyan800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 131.0/255.0, blue: 143.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan 900, whose RBG values are (0, 96, 100), 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 cyan900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 96.0/255.0, blue: 100.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan A100, whose RBG values are (132, 255, 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 cyanA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 132.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan A200, whose RBG values are (24, 255, 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 cyanA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 24.0/255.0, green: 255.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan A400, whose RBG values are (0, 229, 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 cyanA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 229.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Cyan A700, whose RBG values are (0, 184, 212), 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 cyanA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 184.0/255.0, blue: 212.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 100, whose RBG values are (255, 204, 188), 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 deepOrange100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 204.0/255.0, blue: 188.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 200, whose RBG values are (255, 171, 145), 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 deepOrange200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 171.0/255.0, blue: 145.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 300, whose RBG values are (255, 138, 101), 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 deepOrange300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 138.0/255.0, blue: 101.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 400, whose RBG values are (255, 112, 67), 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 deepOrange400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 112.0/255.0, blue: 67.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 50, whose RBG values are (251, 233, 231), 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 deepOrange50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 233.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 500, whose RBG values are (255, 87, 34), 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 deepOrange500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 87.0/255.0, blue: 34.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 600, whose RBG values are (244, 81, 30), 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 deepOrange600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 81.0/255.0, blue: 30.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 700, whose RBG values are (230, 74, 25), 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 deepOrange700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 74.0/255.0, blue: 25.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 800, whose RBG values are (216, 67, 21), 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 deepOrange800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 216.0/255.0, green: 67.0/255.0, blue: 21.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange 900, whose RBG values are (191, 54, 12), 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 deepOrange900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 191.0/255.0, green: 54.0/255.0, blue: 12.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange A100, whose RBG values are (255, 158, 128), 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 deepOrangeA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 158.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange A200, whose RBG values are (255, 110, 64), 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 deepOrangeA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 110.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange A400, whose RBG values are (255, 61, 0), 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 deepOrangeA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 61.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Orange A700, whose RBG values are (221, 44, 0), 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 deepOrangeA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 221.0/255.0, green: 44.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 100, whose RBG values are (209, 196, 233), 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 deepPurple100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 209.0/255.0, green: 196.0/255.0, blue: 233.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 200, whose RBG values are (179, 157, 219), 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 deepPurple200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 179.0/255.0, green: 157.0/255.0, blue: 219.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 300, whose RBG values are (149, 117, 205), 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 deepPurple300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 149.0/255.0, green: 117.0/255.0, blue: 205.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 400, whose RBG values are (126, 87, 194), 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 deepPurple400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 126.0/255.0, green: 87.0/255.0, blue: 194.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 50, whose RBG values are (237, 231, 246), 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 deepPurple50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 237.0/255.0, green: 231.0/255.0, blue: 246.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 500, whose RBG values are (103, 58, 183), 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 deepPurple500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 103.0/255.0, green: 58.0/255.0, blue: 183.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 600, whose RBG values are (94, 53, 177), 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 deepPurple600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 94.0/255.0, green: 53.0/255.0, blue: 177.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 700, whose RBG values are (81, 45, 168), 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 deepPurple700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 81.0/255.0, green: 45.0/255.0, blue: 168.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 800, whose RBG values are (69, 39, 160), 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 deepPurple800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 69.0/255.0, green: 39.0/255.0, blue: 160.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple 900, whose RBG values are (49, 27, 146), 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 deepPurple900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 49.0/255.0, green: 27.0/255.0, blue: 146.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple A100, whose RBG values are (179, 136, 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 deepPurpleA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 179.0/255.0, green: 136.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple A200, whose RBG values are (124, 77, 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 deepPurpleA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 124.0/255.0, green: 77.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple A400, whose RBG values are (101, 31, 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 deepPurpleA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 101.0/255.0, green: 31.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Deep Purple A700, whose RBG values are (98, 0, 234), 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 deepPurpleA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 98.0/255.0, green: 0.0/255.0, blue: 234.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 100, whose RBG values are (200, 230, 201), 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 green100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 200.0/255.0, green: 230.0/255.0, blue: 201.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 200, whose RBG values are (165, 214, 167), 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 green200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 165.0/255.0, green: 214.0/255.0, blue: 167.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 300, whose RBG values are (129, 199, 132), 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 green300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 129.0/255.0, green: 199.0/255.0, blue: 132.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 400, whose RBG values are (102, 187, 106), 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 green400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 102.0/255.0, green: 187.0/255.0, blue: 106.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 50, whose RBG values are (232, 245, 233), 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 green50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 232.0/255.0, green: 245.0/255.0, blue: 233.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 500, whose RBG values are (76, 175, 80), 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 green500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 76.0/255.0, green: 175.0/255.0, blue: 80.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 600, whose RBG values are (67, 160, 71), 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 green600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 67.0/255.0, green: 160.0/255.0, blue: 71.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 700, whose RBG values are (56, 142, 60), 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 green700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 56.0/255.0, green: 142.0/255.0, blue: 60.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 800, whose RBG values are (46, 125, 50), 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 green800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 46.0/255.0, green: 125.0/255.0, blue: 50.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green 900, whose RBG values are (27, 94, 32), 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 green900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 27.0/255.0, green: 94.0/255.0, blue: 32.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green A100, whose RBG values are (185, 246, 202), 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 greenA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 185.0/255.0, green: 246.0/255.0, blue: 202.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green A200, whose RBG values are (105, 240, 174), 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 greenA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 105.0/255.0, green: 240.0/255.0, blue: 174.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green A400, whose RBG values are (0, 230, 118), 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 greenA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 230.0/255.0, blue: 118.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Green A700, whose RBG values are (0, 200, 83), 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 greenA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 200.0/255.0, blue: 83.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 100, whose RBG values are (245, 245, 245), 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 grey100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 245.0/255.0, green: 245.0/255.0, blue: 245.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 200, whose RBG values are (238, 238, 238), 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 grey200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 238.0/255.0, green: 238.0/255.0, blue: 238.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 300, whose RBG values are (224, 224, 224), 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 grey300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 224.0/255.0, green: 224.0/255.0, blue: 224.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 400, whose RBG values are (189, 189, 189), 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 grey400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 189.0/255.0, green: 189.0/255.0, blue: 189.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 50, whose RBG values are (250, 250, 250), 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 grey50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 500, whose RBG values are (158, 158, 158), 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 grey500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 158.0/255.0, green: 158.0/255.0, blue: 158.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 600, whose RBG values are (117, 117, 117), 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 grey600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 117.0/255.0, green: 117.0/255.0, blue: 117.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 700, whose RBG values are (97, 97, 97), 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 grey700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 97.0/255.0, green: 97.0/255.0, blue: 97.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 800, whose RBG values are (66, 66, 66), 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 grey800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 66.0/255.0, green: 66.0/255.0, blue: 66.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Grey 900, whose RBG values are (33, 33, 33), 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 grey900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 33.0/255.0, green: 33.0/255.0, blue: 33.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 100, whose RBG values are (197, 202, 233), 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 indigo100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 197.0/255.0, green: 202.0/255.0, blue: 233.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 200, whose RBG values are (159, 168, 218), 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 indigo200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 159.0/255.0, green: 168.0/255.0, blue: 218.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 300, whose RBG values are (121, 134, 203), 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 indigo300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 121.0/255.0, green: 134.0/255.0, blue: 203.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 400, whose RBG values are (92, 107, 192), 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 indigo400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 92.0/255.0, green: 107.0/255.0, blue: 192.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 50, whose RBG values are (232, 234, 246), 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 indigo50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 232.0/255.0, green: 234.0/255.0, blue: 246.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 500, whose RBG values are (63, 81, 181), 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 indigo500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 63.0/255.0, green: 81.0/255.0, blue: 181.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 600, whose RBG values are (57, 73, 171), 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 indigo600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 57.0/255.0, green: 73.0/255.0, blue: 171.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 700, whose RBG values are (48, 63, 159), 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 indigo700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 48.0/255.0, green: 63.0/255.0, blue: 159.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 800, whose RBG values are (40, 53, 147), 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 indigo800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 40.0/255.0, green: 53.0/255.0, blue: 147.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo 900, whose RBG values are (26, 35, 126), 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 indigo900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 26.0/255.0, green: 35.0/255.0, blue: 126.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo A100, whose RBG values are (140, 158, 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 indigoA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 140.0/255.0, green: 158.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo A200, whose RBG values are (83, 109, 254), 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 indigoA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 83.0/255.0, green: 109.0/255.0, blue: 254.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo A400, whose RBG values are (61, 90, 254), 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 indigoA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 61.0/255.0, green: 90.0/255.0, blue: 254.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Indigo A700, whose RBG values are (48, 79, 254), 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 indigoA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 48.0/255.0, green: 79.0/255.0, blue: 254.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 100, whose RBG values are (179, 229, 252), 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 lightBlue100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 179.0/255.0, green: 229.0/255.0, blue: 252.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 200, whose RBG values are (129, 212, 250), 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 lightBlue200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 129.0/255.0, green: 212.0/255.0, blue: 250.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 300, whose RBG values are (79, 195, 247), 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 lightBlue300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 79.0/255.0, green: 195.0/255.0, blue: 247.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 400, whose RBG values are (41, 182, 246), 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 lightBlue400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 41.0/255.0, green: 182.0/255.0, blue: 246.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 50, whose RBG values are (225, 245, 254), 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 lightBlue50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 225.0/255.0, green: 245.0/255.0, blue: 254.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 500, whose RBG values are (3, 169, 244), 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 lightBlue500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 3.0/255.0, green: 169.0/255.0, blue: 244.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 600, whose RBG values are (3, 155, 229), 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 lightBlue600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 3.0/255.0, green: 155.0/255.0, blue: 229.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 700, whose RBG values are (2, 136, 209), 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 lightBlue700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 2.0/255.0, green: 136.0/255.0, blue: 209.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 800, whose RBG values are (2, 119, 189), 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 lightBlue800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 2.0/255.0, green: 119.0/255.0, blue: 189.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue 900, whose RBG values are (1, 87, 155), 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 lightBlue900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 1.0/255.0, green: 87.0/255.0, blue: 155.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue A100, whose RBG values are (128, 216, 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 lightBlueA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 216.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue A200, whose RBG values are (64, 196, 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 lightBlueA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 64.0/255.0, green: 196.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue A400, whose RBG values are (0, 176, 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 lightBlueA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 176.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Blue A700, whose RBG values are (0, 145, 234), 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 lightBlueA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 145.0/255.0, blue: 234.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 100, whose RBG values are (220, 237, 200), 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 lightGreen100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 220.0/255.0, green: 237.0/255.0, blue: 200.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 200, whose RBG values are (197, 225, 165), 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 lightGreen200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 197.0/255.0, green: 225.0/255.0, blue: 165.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 300, whose RBG values are (174, 213, 129), 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 lightGreen300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 174.0/255.0, green: 213.0/255.0, blue: 129.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 400, whose RBG values are (156, 204, 101), 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 lightGreen400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 156.0/255.0, green: 204.0/255.0, blue: 101.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 50, whose RBG values are (241, 248, 233), 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 lightGreen50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 241.0/255.0, green: 248.0/255.0, blue: 233.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 500, whose RBG values are (139, 195, 74), 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 lightGreen500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 139.0/255.0, green: 195.0/255.0, blue: 74.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 600, whose RBG values are (124, 179, 66), 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 lightGreen600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 124.0/255.0, green: 179.0/255.0, blue: 66.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 700, whose RBG values are (104, 159, 56), 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 lightGreen700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 104.0/255.0, green: 159.0/255.0, blue: 56.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 800, whose RBG values are (85, 139, 47), 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 lightGreen800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 85.0/255.0, green: 139.0/255.0, blue: 47.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green 900, whose RBG values are (51, 105, 30), 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 lightGreen900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 51.0/255.0, green: 105.0/255.0, blue: 30.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green A100, whose RBG values are (204, 255, 144), 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 lightGreenA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 204.0/255.0, green: 255.0/255.0, blue: 144.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green A200, whose RBG values are (178, 255, 89), 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 lightGreenA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 255.0/255.0, blue: 89.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green A400, whose RBG values are (118, 255, 3), 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 lightGreenA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 118.0/255.0, green: 255.0/255.0, blue: 3.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Light Green A700, whose RBG values are (100, 221, 23), 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 lightGreenA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 100.0/255.0, green: 221.0/255.0, blue: 23.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 100, whose RBG values are (240, 244, 195), 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 lime100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 244.0/255.0, blue: 195.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 200, whose RBG values are (230, 238, 156), 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 lime200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 238.0/255.0, blue: 156.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 300, whose RBG values are (220, 231, 117), 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 lime300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 220.0/255.0, green: 231.0/255.0, blue: 117.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 400, whose RBG values are (212, 225, 87), 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 lime400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 212.0/255.0, green: 225.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 50, whose RBG values are (249, 251, 231), 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 lime50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 249.0/255.0, green: 251.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 500, whose RBG values are (205, 220, 57), 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 lime500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 205.0/255.0, green: 220.0/255.0, blue: 57.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 600, whose RBG values are (192, 202, 51), 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 lime600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 192.0/255.0, green: 202.0/255.0, blue: 51.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 700, whose RBG values are (175, 180, 43), 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 lime700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 175.0/255.0, green: 180.0/255.0, blue: 43.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 800, whose RBG values are (158, 157, 36), 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 lime800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 158.0/255.0, green: 157.0/255.0, blue: 36.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime 900, whose RBG values are (130, 119, 23), 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 lime900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 130.0/255.0, green: 119.0/255.0, blue: 23.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime A100, whose RBG values are (244, 255, 129), 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 limeA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 255.0/255.0, blue: 129.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime A200, whose RBG values are (238, 255, 65), 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 limeA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 238.0/255.0, green: 255.0/255.0, blue: 65.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime A400, whose RBG values are (198, 255, 0), 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 limeA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 198.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Lime A700, whose RBG values are (174, 234, 0), 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 limeA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 174.0/255.0, green: 234.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 100, whose RBG values are (255, 224, 178), 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 orange100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 224.0/255.0, blue: 178.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 200, whose RBG values are (255, 204, 128), 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 orange200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 204.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 300, whose RBG values are (255, 183, 77), 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 orange300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 183.0/255.0, blue: 77.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 400, whose RBG values are (255, 167, 38), 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 orange400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 167.0/255.0, blue: 38.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 50, whose RBG values are (255, 243, 224), 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 orange50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 243.0/255.0, blue: 224.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 500, whose RBG values are (255, 152, 0), 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 orange500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 152.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 600, whose RBG values are (251, 140, 0), 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 orange600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 140.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 700, whose RBG values are (245, 124, 0), 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 orange700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 245.0/255.0, green: 124.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 800, whose RBG values are (239, 108, 0), 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 orange800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 108.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange 900, whose RBG values are (230, 81, 0), 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 orange900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 230.0/255.0, green: 81.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange A100, whose RBG values are (255, 209, 128), 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 orangeA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 209.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange A200, whose RBG values are (255, 171, 64), 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 orangeA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 171.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange A400, whose RBG values are (255, 145, 0), 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 orangeA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 145.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Orange A700, whose RBG values are (255, 109, 0), 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 orangeA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 109.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 100, whose RBG values are (248, 187, 208), 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 pink100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 248.0/255.0, green: 187.0/255.0, blue: 208.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 200, whose RBG values are (244, 143, 177), 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 pink200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 143.0/255.0, blue: 177.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 300, whose RBG values are (240, 98, 146), 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 pink300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 240.0/255.0, green: 98.0/255.0, blue: 146.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 400, whose RBG values are (236, 64, 122), 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 pink400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 236.0/255.0, green: 64.0/255.0, blue: 122.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 50, whose RBG values are (252, 228, 236), 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 pink50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 252.0/255.0, green: 228.0/255.0, blue: 236.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 500, whose RBG values are (233, 30, 99), 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 pink500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 233.0/255.0, green: 30.0/255.0, blue: 99.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 600, whose RBG values are (216, 27, 96), 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 pink600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 216.0/255.0, green: 27.0/255.0, blue: 96.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 700, whose RBG values are (194, 24, 91), 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 pink700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 194.0/255.0, green: 24.0/255.0, blue: 91.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 800, whose RBG values are (173, 20, 87), 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 pink800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 173.0/255.0, green: 20.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink 900, whose RBG values are (136, 14, 79), 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 pink900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 136.0/255.0, green: 14.0/255.0, blue: 79.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink A100, whose RBG values are (255, 128, 171), 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 pinkA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 128.0/255.0, blue: 171.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink A200, whose RBG values are (255, 64, 129), 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 pinkA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 64.0/255.0, blue: 129.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink A400, whose RBG values are (245, 0, 87), 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 pinkA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 245.0/255.0, green: 0.0/255.0, blue: 87.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Pink A700, whose RBG values are (197, 17, 98), 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 pinkA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 197.0/255.0, green: 17.0/255.0, blue: 98.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 100, whose RBG values are (225, 190, 231), 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 purple100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 225.0/255.0, green: 190.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 200, whose RBG values are (206, 147, 216), 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 purple200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 206.0/255.0, green: 147.0/255.0, blue: 216.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 300, whose RBG values are (186, 104, 200), 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 purple300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 186.0/255.0, green: 104.0/255.0, blue: 200.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 400, whose RBG values are (171, 71, 188), 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 purple400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 171.0/255.0, green: 71.0/255.0, blue: 188.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 50, whose RBG values are (243, 229, 245), 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 purple50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 243.0/255.0, green: 229.0/255.0, blue: 245.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 500, whose RBG values are (156, 39, 176), 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 purple500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 156.0/255.0, green: 39.0/255.0, blue: 176.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 600, whose RBG values are (142, 36, 170), 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 purple600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 142.0/255.0, green: 36.0/255.0, blue: 170.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 700, whose RBG values are (123, 31, 162), 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 purple700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 123.0/255.0, green: 31.0/255.0, blue: 162.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 800, whose RBG values are (106, 27, 154), 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 purple800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 106.0/255.0, green: 27.0/255.0, blue: 154.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple 900, whose RBG values are (74, 20, 140), 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 purple900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 74.0/255.0, green: 20.0/255.0, blue: 140.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple A100, whose RBG values are (234, 128, 252), 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 purpleA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 234.0/255.0, green: 128.0/255.0, blue: 252.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple A200, whose RBG values are (224, 64, 251), 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 purpleA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 224.0/255.0, green: 64.0/255.0, blue: 251.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple A400, whose RBG values are (213, 0, 249), 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 purpleA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 213.0/255.0, green: 0.0/255.0, blue: 249.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Purple A700, whose RBG values are (170, 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 purpleA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 170.0/255.0, green: 0.0/255.0, blue: 255.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 100, whose RBG values are (255, 205, 210), 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 red100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 205.0/255.0, blue: 210.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 200, whose RBG values are (239, 154, 154), 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 red200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 154.0/255.0, blue: 154.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 300, whose RBG values are (229, 115, 115), 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 red300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 229.0/255.0, green: 115.0/255.0, blue: 115.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 400, whose RBG values are (239, 83, 80), 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 red400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 239.0/255.0, green: 83.0/255.0, blue: 80.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 50, whose RBG values are (255, 235, 238), 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 red50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 235.0/255.0, blue: 238.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 500, whose RBG values are (244, 67, 54), 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 red500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 244.0/255.0, green: 67.0/255.0, blue: 54.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 600, whose RBG values are (229, 57, 53), 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 red600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 229.0/255.0, green: 57.0/255.0, blue: 53.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 700, whose RBG values are (211, 47, 47), 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 red700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 211.0/255.0, green: 47.0/255.0, blue: 47.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 800, whose RBG values are (198, 40, 40), 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 red800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 198.0/255.0, green: 40.0/255.0, blue: 40.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red 900, whose RBG values are (183, 28, 28), 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 red900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 183.0/255.0, green: 28.0/255.0, blue: 28.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red A100, whose RBG values are (255, 138, 128), 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 redA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 138.0/255.0, blue: 128.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red A200, whose RBG values are (255, 82, 82), 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 redA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 82.0/255.0, blue: 82.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red A400, whose RBG values are (255, 23, 68), 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 redA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 23.0/255.0, blue: 68.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Red A700, whose RBG values are (213, 0, 0), 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 redA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 213.0/255.0, green: 0.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 100, whose RBG values are (178, 223, 219), 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 teal100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 178.0/255.0, green: 223.0/255.0, blue: 219.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 200, whose RBG values are (128, 203, 196), 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 teal200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 128.0/255.0, green: 203.0/255.0, blue: 196.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 300, whose RBG values are (77, 182, 172), 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 teal300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 77.0/255.0, green: 182.0/255.0, blue: 172.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 400, whose RBG values are (38, 166, 154), 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 teal400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 38.0/255.0, green: 166.0/255.0, blue: 154.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 50, whose RBG values are (224, 242, 241), 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 teal50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 224.0/255.0, green: 242.0/255.0, blue: 241.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 500, whose RBG values are (0, 150, 136), 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 teal500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 150.0/255.0, blue: 136.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 600, whose RBG values are (0, 137, 123), 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 teal600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 137.0/255.0, blue: 123.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 700, whose RBG values are (0, 121, 107), 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 teal700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 121.0/255.0, blue: 107.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 800, whose RBG values are (0, 105, 92), 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 teal800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 105.0/255.0, blue: 92.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal 900, whose RBG values are (0, 77, 64), 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 teal900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 77.0/255.0, blue: 64.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal A100, whose RBG values are (167, 255, 235), 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 tealA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 167.0/255.0, green: 255.0/255.0, blue: 235.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal A200, whose RBG values are (100, 255, 218), 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 tealA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 100.0/255.0, green: 255.0/255.0, blue: 218.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal A400, whose RBG values are (29, 233, 182), 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 tealA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 29.0/255.0, green: 233.0/255.0, blue: 182.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Teal A700, whose RBG values are (0, 191, 165), 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 tealA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 0.0/255.0, green: 191.0/255.0, blue: 165.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 100, whose RBG values are (255, 249, 196), 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 yellow100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 249.0/255.0, blue: 196.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 200, whose RBG values are (255, 245, 157), 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 yellow200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 245.0/255.0, blue: 157.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 300, whose RBG values are (255, 241, 118), 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 yellow300Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 241.0/255.0, blue: 118.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 400, whose RBG values are (255, 238, 88), 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 yellow400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 238.0/255.0, blue: 88.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 50, whose RBG values are (255, 253, 231), 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 yellow50Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 253.0/255.0, blue: 231.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 500, whose RBG values are (255, 235, 59), 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 yellow500Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 235.0/255.0, blue: 59.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 600, whose RBG values are (253, 216, 53), 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 yellow600Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 253.0/255.0, green: 216.0/255.0, blue: 53.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 700, whose RBG values are (251, 192, 45), 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 yellow700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 251.0/255.0, green: 192.0/255.0, blue: 45.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 800, whose RBG values are (249, 168, 37), 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 yellow800Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 249.0/255.0, green: 168.0/255.0, blue: 37.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow 900, whose RBG values are (245, 127, 23), 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 yellow900Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 245.0/255.0, green: 127.0/255.0, blue: 23.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow A100, whose RBG values are (255, 255, 141), 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 yellowA100Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 141.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow A200, whose RBG values are (255, 255, 0), 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 yellowA200Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 255.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow A400, whose RBG values are (255, 234, 0), 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 yellowA400Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 234.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + + /** + Returns a UIColor object representing the color Yellow A700, whose RBG values are (255, 214, 0), 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 yellowA700Color ( alpha: CGFloat = 1.0 ) -> UIColor { + return UIColor.init ( red: 255.0/255.0, green: 214.0/255.0, blue: 0.0/255.0, alpha: alpha ) } + + +} +