The following is a slightly modified version of Timm Kent's answer above. This version uses class constants to avoid typing parentheses when referencing a color.
With constants, instead of typing this:
let myColor = UIColor.cantaloupe()
You can type this:
let myColor = UIColor.cantaloupe
The updated extension looks like this:
import UIKit
extension UIColor
{
static let aluminum = UIColor(red:153/255, green:153/255, blue:153/255, alpha:1.0)
static let aqua = UIColor(red:0/255, green:128/255, blue:255/255, alpha:1.0)
static let asparagus = UIColor(red:128/255, green:120/255, blue:0/255, alpha:1.0)
static let banana = UIColor(red:255/255, green:255/255, blue:102/255, alpha:1.0)
static let blueberry = UIColor(red:0/255, green:0/255, blue:255/255, alpha:1.0)
static let bubblegum = UIColor(red:255/255, green:102/255, blue:255/255, alpha:1.0)
static let cantalope = UIColor(red:255/255, green:204/255, blue:102/255, alpha:1.0)
static let carnation = UIColor(red:255/255, green:111/255, blue:207/255, alpha:1.0)
static let cayenne = UIColor(red:128/255, green:0/255, blue:0/255, alpha:1.0)
static let clover = UIColor(red:0/255, green:128/255, blue:0/255, alpha:1.0)
static let eggplant = UIColor(red:64/255, green:0/255, blue:128/255, alpha:1.0)
static let fern = UIColor(red:64/255, green:128/255, blue:0/255, alpha:1.0)
static let flora = UIColor(red:102/255, green:255/255, blue:102/255, alpha:1.0)
static let grape = UIColor(red:128/255, green:0/255, blue:255/255, alpha:1.0)
static let honeydew = UIColor(red:204/255, green:255/255, blue:102/255, alpha:1.0)
static let ice = UIColor(red:102/255, green:255/255, blue:255/255, alpha:1.0)
static let iron = UIColor(red:76/255, green:76/255, blue:76/255, alpha:1.0)
static let lavender = UIColor(red:204/255, green:102/255, blue:255/255, alpha:1.0)
static let lead = UIColor(red:25/255, green:25/255, blue:25/255, alpha:1.0)
static let lemon = UIColor(red:255/255, green:255/255, blue:0/255, alpha:1.0)
static let licorice = UIColor(red:0/255, green:0/255, blue:0/255, alpha:1.0)
static let lime = UIColor(red:128/255, green:255/255, blue:0/255, alpha:1.0)
static let magenta = UIColor(red:255/255, green:0/255, blue:255/255, alpha:1.0)
static let magnesium = UIColor(red:179/255, green:179/255, blue:179/255, alpha:1.0)
static let maraschino = UIColor(red:255/255, green:0/255, blue:0/255, alpha:1.0)
static let maroon = UIColor(red:128/255, green:0/255, blue:64/255, alpha:1.0)
static let mercury = UIColor(red:230/255, green:230/255, blue:230/255, alpha:1.0)
static let midnight = UIColor(red:0/255, green:0/255, blue:128/255, alpha:1.0)
static let mocha = UIColor(red:128/255, green:64/255, blue:0/255, alpha:1.0)
static let moss = UIColor(red:0/255, green:128/255, blue:64/255, alpha:1.0)
static let nickel = UIColor(red:128/255, green:128/255, blue:128/255, alpha:1.0)
static let ocean = UIColor(red:0/255, green:64/255, blue:128/255, alpha:1.0)
static let orchid = UIColor(red:102/255, green:102/255, blue:255/255, alpha:1.0)
static let plum = UIColor(red:128/255, green:0/255, blue:128/255, alpha:1.0)
static let salmon = UIColor(red:255/255, green:102/255, blue:102/255, alpha:1.0)
static let seafoam = UIColor(red:0/255, green:255/255, blue:128/255, alpha:1.0)
static let silver = UIColor(red:204/255, green:204/255, blue:204/255, alpha:1.0)
static let sky = UIColor(red:102/255, green:204/255, blue:255/255, alpha:1.0)
static let snow = UIColor(red:255/255, green:255/255, blue:255/255, alpha:1.0)
static let spindrift = UIColor(red:102/255, green:255/255, blue:204/255, alpha:1.0)
static let spring = UIColor(red:0/255, green:255/255, blue:0/255, alpha:1.0)
static let steel = UIColor(red:102/255, green:102/255, blue:102/255, alpha:1.0)
static let strawberry = UIColor(red:255/255, green:0/255, blue:128/255, alpha:1.0)
static let tangerine = UIColor(red:255/255, green:128/255, blue:0/255, alpha:1.0)
static let teal = UIColor(red:0/255, green:128/255, blue:128/255, alpha:1.0)
static let tin = UIColor(red:127/255, green:127/255, blue:127/255, alpha:1.0)
static let tungsten = UIColor(red:51/255, green:51/255, blue:51/255, alpha:1.0)
static let turquoise = UIColor(red:0/255, green:255/255, blue:255/255, alpha:1.0)
}
P.S. Also fixed typos cantalope
-> cantaloupe
and aluminium
-> aluminum
(as in XCode) and sorted color names alphabetically. Color codes are not verified though.