// // Colors.swift // This file is generated by Spectra, so don't expect to make any persistent changes //

import UIKit

extension UIColor {

{{#colors}}

class func {{name}}() -> UIColor {
{{#grayscale?}}
    return UIColor(white: {{white}}, alpha: {{alpha}})
{{/grayscale?}}
{{^grayscale?}}
    return UIColor(red: {{red}}, green: {{green}}, blue: {{blue}}, alpha: {{alpha}})
{{/grayscale?}}
}

{{/colors}}}