// ColorExtensions.swift - Copyright 2024 SwifterSwift
|
|
#if !os(Linux)
|
|
#if canImport(UIKit)
|
import UIKit
|
|
/// SwifterSwift: Color
|
public typealias SFColor = UIColor
|
#endif
|
|
#if canImport(AppKit) && !targetEnvironment(macCatalyst)
|
import AppKit
|
|
/// SwifterSwift: Color
|
public typealias SFColor = NSColor
|
#endif
|
|
#if !os(watchOS)
|
import CoreImage
|
#endif
|
|
// MARK: - Properties
|
|
public extension SFColor {
|
/// SwifterSwift: Random color.
|
static var random: SFColor {
|
let red = Int.random(in: 0...255)
|
let green = Int.random(in: 0...255)
|
let blue = Int.random(in: 0...255)
|
return SFColor(red: red, green: green, blue: blue)!
|
}
|
|
// swiftlint:disable large_tuple
|
/// SwifterSwift: RGB components for a Color (between 0 and 255).
|
///
|
/// UIColor.red.rgbComponents.red -> 255
|
/// NSColor.green.rgbComponents.green -> 255
|
/// UIColor.blue.rgbComponents.blue -> 255
|
///
|
var rgbComponents: (red: Int, green: Int, blue: Int) {
|
let components: [CGFloat] = {
|
let comps: [CGFloat] = cgColor.components!
|
guard comps.count != 4 else { return comps }
|
return [comps[0], comps[0], comps[0], comps[1]]
|
}()
|
let red = components[0]
|
let green = components[1]
|
let blue = components[2]
|
return (red: Int(red * 255.0), green: Int(green * 255.0), blue: Int(blue * 255.0))
|
}
|
|
// swiftlint:enable large_tuple
|
|
// swiftlint:disable large_tuple
|
/// SwifterSwift: RGB components for a Color represented as CGFloat numbers (between 0 and 1).
|
///
|
/// UIColor.red.rgbComponents.red -> 1.0
|
/// NSColor.green.rgbComponents.green -> 1.0
|
/// UIColor.blue.rgbComponents.blue -> 1.0
|
///
|
var cgFloatComponents: (red: CGFloat, green: CGFloat, blue: CGFloat) {
|
let components: [CGFloat] = {
|
let comps: [CGFloat] = cgColor.components!
|
guard comps.count != 4 else { return comps }
|
return [comps[0], comps[0], comps[0], comps[1]]
|
}()
|
let red = components[0]
|
let green = components[1]
|
let blue = components[2]
|
return (red: red, green: green, blue: blue)
|
}
|
|
// swiftlint:enable large_tuple
|
|
// swiftlint:disable large_tuple
|
/// SwifterSwift: Get components of hue, saturation, and brightness, and alpha (read-only).
|
var hsbaComponents: (hue: CGFloat, saturation: CGFloat, brightness: CGFloat, alpha: CGFloat) {
|
var hue: CGFloat = 0.0
|
var saturation: CGFloat = 0.0
|
var brightness: CGFloat = 0.0
|
var alpha: CGFloat = 0.0
|
|
getHue(&hue, saturation: &saturation, brightness: &brightness, alpha: &alpha)
|
return (hue: hue, saturation: saturation, brightness: brightness, alpha: alpha)
|
}
|
|
// swiftlint:enable large_tuple
|
|
/// SwifterSwift: Hexadecimal value string (read-only).
|
var hexString: String {
|
let components: [Int] = {
|
let comps = cgColor.components!.map { Int($0 * 255.0) }
|
guard comps.count != 4 else { return comps }
|
return [comps[0], comps[0], comps[0], comps[1]]
|
}()
|
return String(format: "#%02X%02X%02X", components[0], components[1], components[2])
|
}
|
|
/// SwifterSwift: Short hexadecimal value string (read-only, if applicable).
|
var shortHexString: String? {
|
let string = hexString.replacingOccurrences(of: "#", with: "")
|
let chrs = Array(string)
|
guard chrs[0] == chrs[1], chrs[2] == chrs[3], chrs[4] == chrs[5] else { return nil }
|
return "#\(chrs[0])\(chrs[2])\(chrs[4])"
|
}
|
|
/// SwifterSwift: Short hexadecimal value string, or full hexadecimal string if not possible (read-only).
|
var shortHexOrHexString: String {
|
let components: [Int] = {
|
let comps = cgColor.components!.map { Int($0 * 255.0) }
|
guard comps.count != 4 else { return comps }
|
return [comps[0], comps[0], comps[0], comps[1]]
|
}()
|
let hexString = String(format: "#%02X%02X%02X", components[0], components[1], components[2])
|
let string = hexString.replacingOccurrences(of: "#", with: "")
|
let chrs = Array(string)
|
guard chrs[0] == chrs[1], chrs[2] == chrs[3], chrs[4] == chrs[5] else { return hexString }
|
return "#\(chrs[0])\(chrs[2])\(chrs[4])"
|
}
|
|
/// SwifterSwift: Alpha of Color (read-only).
|
var alpha: CGFloat {
|
return cgColor.alpha
|
}
|
|
#if !os(watchOS)
|
/// SwifterSwift: CoreImage.CIColor (read-only).
|
var coreImageColor: CoreImage.CIColor? {
|
return CoreImage.CIColor(color: self)
|
}
|
#endif
|
|
/// SwifterSwift: Get UInt representation of a Color (read-only).
|
var uInt: UInt {
|
let components: [CGFloat] = {
|
let comps: [CGFloat] = cgColor.components!
|
guard comps.count != 4 else { return comps }
|
return [comps[0], comps[0], comps[0], comps[1]]
|
}()
|
|
var colorAsUInt32: UInt32 = 0
|
colorAsUInt32 += UInt32(components[0] * 255.0) << 16
|
colorAsUInt32 += UInt32(components[1] * 255.0) << 8
|
colorAsUInt32 += UInt32(components[2] * 255.0)
|
|
return UInt(colorAsUInt32)
|
}
|
|
/// SwifterSwift: Get color complementary (read-only, if applicable).
|
var complementary: SFColor? {
|
let colorSpaceRGB = CGColorSpaceCreateDeviceRGB()
|
let convertColorToRGBSpace: ((_ color: SFColor) -> SFColor?) = { _ -> SFColor? in
|
if self.cgColor.colorSpace!.model == CGColorSpaceModel.monochrome {
|
let oldComponents = self.cgColor.components
|
let components: [CGFloat] = [oldComponents![0], oldComponents![0], oldComponents![0], oldComponents![1]]
|
let colorRef = CGColor(colorSpace: colorSpaceRGB, components: components)
|
let colorOut = SFColor(cgColor: colorRef!)
|
return colorOut
|
} else {
|
return self
|
}
|
}
|
|
let color = convertColorToRGBSpace(self)
|
guard let componentColors = color?.cgColor.components else { return nil }
|
|
let red: CGFloat = sqrt(pow(255.0, 2.0) - pow(componentColors[0] * 255, 2.0)) / 255
|
let green: CGFloat = sqrt(pow(255.0, 2.0) - pow(componentColors[1] * 255, 2.0)) / 255
|
let blue: CGFloat = sqrt(pow(255.0, 2.0) - pow(componentColors[2] * 255, 2.0)) / 255
|
|
return SFColor(red: red, green: green, blue: blue, alpha: 1.0)
|
}
|
}
|
|
// MARK: - Methods
|
|
public extension SFColor {
|
/// SwifterSwift: Blend two Colors.
|
///
|
/// - Parameters:
|
/// - color1: first color to blend
|
/// - intensity1: intensity of first color (default is 0.5)
|
/// - color2: second color to blend
|
/// - intensity2: intensity of second color (default is 0.5)
|
/// - Returns: Color created by blending first and second colors.
|
static func blend(_ color1: SFColor, intensity1: CGFloat = 0.5, with color2: SFColor,
|
intensity2: CGFloat = 0.5) -> SFColor {
|
// http://stackoverflow.com/questions/27342715/blend-uicolors-in-swift
|
|
let total = intensity1 + intensity2
|
let level1 = intensity1 / total
|
let level2 = intensity2 / total
|
|
guard level1 > 0 else { return color2 }
|
guard level2 > 0 else { return color1 }
|
|
let components1: [CGFloat] = {
|
let comps: [CGFloat] = color1.cgColor.components!
|
guard comps.count != 4 else { return comps }
|
return [comps[0], comps[0], comps[0], comps[1]]
|
}()
|
|
let components2: [CGFloat] = {
|
let comps: [CGFloat] = color2.cgColor.components!
|
guard comps.count != 4 else { return comps }
|
return [comps[0], comps[0], comps[0], comps[1]]
|
}()
|
|
let red1 = components1[0]
|
let red2 = components2[0]
|
|
let green1 = components1[1]
|
let green2 = components2[1]
|
|
let blue1 = components1[2]
|
let blue2 = components2[2]
|
|
let alpha1 = color1.cgColor.alpha
|
let alpha2 = color2.cgColor.alpha
|
|
let red = level1 * red1 + level2 * red2
|
let green = level1 * green1 + level2 * green2
|
let blue = level1 * blue1 + level2 * blue2
|
let alpha = level1 * alpha1 + level2 * alpha2
|
|
return SFColor(red: red, green: green, blue: blue, alpha: alpha)
|
}
|
|
/// SwifterSwift: Lighten a color.
|
///
|
/// let color = SFColor(red: r, green: g, blue: b, alpha: a)
|
/// let lighterColor: Color = color.lighten(by: 0.2)
|
///
|
/// - Parameter percentage: Percentage by which to lighten the color.
|
/// - Returns: A lightened color.
|
func lighten(by percentage: CGFloat = 0.2) -> SFColor {
|
// https://stackoverflow.com/questions/38435308/swift-get-lighter-and-darker-color-variations-for-a-given-uicolor
|
var red: CGFloat = 0, green: CGFloat = 0, blue: CGFloat = 0, alpha: CGFloat = 0
|
getRed(&red, green: &green, blue: &blue, alpha: &alpha)
|
return SFColor(red: min(red + percentage, 1.0),
|
green: min(green + percentage, 1.0),
|
blue: min(blue + percentage, 1.0),
|
alpha: alpha)
|
}
|
|
/// SwifterSwift: Darken a color.
|
///
|
/// let color = SFColor(red: r, green: g, blue: b, alpha: a)
|
/// let darkerColor: Color = color.darken(by: 0.2)
|
///
|
/// - Parameter percentage: Percentage by which to darken the color.
|
/// - Returns: A darkened color.
|
func darken(by percentage: CGFloat = 0.2) -> SFColor {
|
// https://stackoverflow.com/questions/38435308/swift-get-lighter-and-darker-color-variations-for-a-given-uicolor
|
var red: CGFloat = 0, green: CGFloat = 0, blue: CGFloat = 0, alpha: CGFloat = 0
|
getRed(&red, green: &green, blue: &blue, alpha: &alpha)
|
return SFColor(red: max(red - percentage, 0),
|
green: max(green - percentage, 0),
|
blue: max(blue - percentage, 0),
|
alpha: alpha)
|
}
|
}
|
|
// MARK: - Initializers
|
|
public extension SFColor {
|
/// SwifterSwift: Create Color from RGB values with optional transparency.
|
///
|
/// - Parameters:
|
/// - red: red component.
|
/// - green: green component.
|
/// - blue: blue component.
|
/// - transparency: optional transparency value (default is 1).
|
convenience init?(red: Int, green: Int, blue: Int, transparency: CGFloat = 1) {
|
guard red >= 0, red <= 255 else { return nil }
|
guard green >= 0, green <= 255 else { return nil }
|
guard blue >= 0, blue <= 255 else { return nil }
|
|
var trans = transparency
|
if trans < 0 { trans = 0 }
|
if trans > 1 { trans = 1 }
|
|
self.init(red: CGFloat(red) / 255.0, green: CGFloat(green) / 255.0, blue: CGFloat(blue) / 255.0, alpha: trans)
|
}
|
|
/// SwifterSwift: Create Color from hexadecimal value with optional transparency.
|
///
|
/// - Parameters:
|
/// - hex: hex Int (example: 0xDECEB5).
|
/// - transparency: optional transparency value (default is 1).
|
convenience init?(hex: Int, transparency: CGFloat = 1) {
|
var trans = transparency
|
if trans < 0 { trans = 0 }
|
if trans > 1 { trans = 1 }
|
|
let red = (hex >> 16) & 0xFF
|
let green = (hex >> 8) & 0xFF
|
let blue = hex & 0xFF
|
self.init(red: red, green: green, blue: blue, transparency: trans)
|
}
|
|
/// SwifterSwift: Create Color from hexadecimal string with optional transparency (if applicable).
|
///
|
/// - Parameters:
|
/// - hexString: hexadecimal string (examples: EDE7F6, 0xEDE7F6, #EDE7F6, #0ff, 0xF0F, ..).
|
/// - transparency: optional transparency value (default is 1).
|
convenience init?(hexString: String, transparency: CGFloat = 1) {
|
var string = ""
|
let lowercaseHexString = hexString.lowercased()
|
if lowercaseHexString.hasPrefix("0x") {
|
string = lowercaseHexString.replacingOccurrences(of: "0x", with: "")
|
} else if hexString.hasPrefix("#") {
|
string = hexString.replacingOccurrences(of: "#", with: "")
|
} else {
|
string = hexString
|
}
|
|
if string.count == 3 { // convert hex to 6 digit format if in short format
|
var str = ""
|
string.forEach { str.append(String(repeating: String($0), count: 2)) }
|
string = str
|
}
|
|
guard let hexValue = Int(string, radix: 16) else { return nil }
|
|
var trans = transparency
|
if trans < 0 { trans = 0 }
|
if trans > 1 { trans = 1 }
|
|
let red = (hexValue >> 16) & 0xFF
|
let green = (hexValue >> 8) & 0xFF
|
let blue = hexValue & 0xFF
|
self.init(red: red, green: green, blue: blue, transparency: trans)
|
}
|
|
/// SwifterSwift: Create Color from hexadecimal string in the format ARGB (alpha-red-green-blue).
|
///
|
/// - Parameters:
|
/// - argbHexString: hexadecimal string (examples: 7FEDE7F6, 0x7FEDE7F6, #7FEDE7F6, #f0ff, 0xFF0F, ..).
|
convenience init?(argbHexString: String) {
|
var string = argbHexString.replacingOccurrences(of: "0x", with: "").replacingOccurrences(of: "#", with: "")
|
|
if string.count <= 4 { // convert hex to long format if in short format
|
var str = ""
|
for character in string {
|
str.append(String(repeating: String(character), count: 2))
|
}
|
string = str
|
}
|
|
guard let hexValue = Int(string, radix: 16) else { return nil }
|
|
let hasAlpha = string.count == 8
|
|
let alpha = hasAlpha ? (hexValue >> 24) & 0xFF : 0xFF
|
let red = (hexValue >> 16) & 0xFF
|
let green = (hexValue >> 8) & 0xFF
|
let blue = hexValue & 0xFF
|
|
self.init(red: red, green: green, blue: blue, transparency: CGFloat(alpha) / 255)
|
}
|
|
/// SwifterSwift: Create Color from a complementary of a Color (if applicable).
|
///
|
/// - Parameter color: color of which opposite color is desired.
|
convenience init?(complementaryFor color: SFColor) {
|
let colorSpaceRGB = CGColorSpaceCreateDeviceRGB()
|
let convertColorToRGBSpace: ((_ color: SFColor) -> SFColor?) = { color -> SFColor? in
|
if color.cgColor.colorSpace!.model == CGColorSpaceModel.monochrome {
|
let oldComponents = color.cgColor.components
|
let components: [CGFloat] = [oldComponents![0], oldComponents![0], oldComponents![0], oldComponents![1]]
|
let colorRef = CGColor(colorSpace: colorSpaceRGB, components: components)
|
let colorOut = SFColor(cgColor: colorRef!)
|
return colorOut
|
} else {
|
return color
|
}
|
}
|
|
let color = convertColorToRGBSpace(color)
|
guard let componentColors = color?.cgColor.components else { return nil }
|
|
let red: CGFloat = sqrt(pow(255.0, 2.0) - pow(componentColors[0] * 255, 2.0)) / 255
|
let green: CGFloat = sqrt(pow(255.0, 2.0) - pow(componentColors[1] * 255, 2.0)) / 255
|
let blue: CGFloat = sqrt(pow(255.0, 2.0) - pow(componentColors[2] * 255, 2.0)) / 255
|
self.init(red: red, green: green, blue: blue, alpha: 1.0)
|
}
|
}
|
|
// MARK: - Social
|
|
public extension SFColor {
|
/// SwifterSwift: Brand identity color of popular social media platform.
|
enum Social {
|
// https://www.lockedowndesign.com/social-media-colors/
|
|
/// SwifterSwift: red: 59, green: 89, blue: 152
|
public static let facebook = SFColor(red: 59, green: 89, blue: 152)!
|
|
/// SwifterSwift: red: 0, green: 182, blue: 241
|
public static let twitter = SFColor(red: 0, green: 182, blue: 241)!
|
|
/// SwifterSwift: red: 223, green: 74, blue: 50
|
public static let googlePlus = SFColor(red: 223, green: 74, blue: 50)!
|
|
/// SwifterSwift: red: 0, green: 123, blue: 182
|
public static let linkedIn = SFColor(red: 0, green: 123, blue: 182)!
|
|
/// SwifterSwift: red: 69, green: 187, blue: 255
|
public static let vimeo = SFColor(red: 69, green: 187, blue: 255)!
|
|
/// SwifterSwift: red: 179, green: 18, blue: 23
|
public static let youtube = SFColor(red: 179, green: 18, blue: 23)!
|
|
/// SwifterSwift: red: 195, green: 42, blue: 163
|
public static let instagram = SFColor(red: 195, green: 42, blue: 163)!
|
|
/// SwifterSwift: red: 203, green: 32, blue: 39
|
public static let pinterest = SFColor(red: 203, green: 32, blue: 39)!
|
|
/// SwifterSwift: red: 244, green: 0, blue: 131
|
public static let flickr = SFColor(red: 244, green: 0, blue: 131)!
|
|
/// SwifterSwift: red: 67, green: 2, blue: 151
|
public static let yahoo = SFColor(red: 67, green: 2, blue: 151)!
|
|
/// SwifterSwift: red: 67, green: 2, blue: 151
|
public static let soundCloud = SFColor(red: 67, green: 2, blue: 151)!
|
|
/// SwifterSwift: red: 44, green: 71, blue: 98
|
public static let tumblr = SFColor(red: 44, green: 71, blue: 98)!
|
|
/// SwifterSwift: red: 252, green: 69, blue: 117
|
public static let foursquare = SFColor(red: 252, green: 69, blue: 117)!
|
|
/// SwifterSwift: red: 255, green: 176, blue: 0
|
public static let swarm = SFColor(red: 255, green: 176, blue: 0)!
|
|
/// SwifterSwift: red: 234, green: 76, blue: 137
|
public static let dribbble = SFColor(red: 234, green: 76, blue: 137)!
|
|
/// SwifterSwift: red: 255, green: 87, blue: 0
|
public static let reddit = SFColor(red: 255, green: 87, blue: 0)!
|
|
/// SwifterSwift: red: 74, green: 93, blue: 78
|
public static let devianArt = SFColor(red: 74, green: 93, blue: 78)!
|
|
/// SwifterSwift: red: 238, green: 64, blue: 86
|
public static let pocket = SFColor(red: 238, green: 64, blue: 86)!
|
|
/// SwifterSwift: red: 170, green: 34, blue: 182
|
public static let quora = SFColor(red: 170, green: 34, blue: 182)!
|
|
/// SwifterSwift: red: 247, green: 146, blue: 30
|
public static let slideShare = SFColor(red: 247, green: 146, blue: 30)!
|
|
/// SwifterSwift: red: 0, green: 153, blue: 229
|
public static let px500 = SFColor(red: 0, green: 153, blue: 229)!
|
|
/// SwifterSwift: red: 223, green: 109, blue: 70
|
public static let listly = SFColor(red: 223, green: 109, blue: 70)!
|
|
/// SwifterSwift: red: 0, green: 180, blue: 137
|
public static let vine = SFColor(red: 0, green: 180, blue: 137)!
|
|
/// SwifterSwift: red: 0, green: 175, blue: 240
|
public static let skype = SFColor(red: 0, green: 175, blue: 240)!
|
|
/// SwifterSwift: red: 235, green: 73, blue: 36
|
public static let stumbleUpon = SFColor(red: 235, green: 73, blue: 36)!
|
|
/// SwifterSwift: red: 255, green: 252, blue: 0
|
public static let snapchat = SFColor(red: 255, green: 252, blue: 0)!
|
|
/// SwifterSwift: red: 37, green: 211, blue: 102
|
public static let whatsApp = SFColor(red: 37, green: 211, blue: 102)!
|
}
|
}
|
|
// MARK: - Material colors
|
|
public extension SFColor {
|
// swiftlint:disable type_body_length
|
/// SwifterSwift: Google Material design colors palette.
|
enum Material {
|
// https://material.google.com/style/color.html
|
|
/// SwifterSwift: color red500
|
public static let red = red500
|
|
/// SwifterSwift: hex #FFEBEE
|
public static let red50 = SFColor(hex: 0xFFEBEE)!
|
|
/// SwifterSwift: hex #FFCDD2
|
public static let red100 = SFColor(hex: 0xFFCDD2)!
|
|
/// SwifterSwift: hex #EF9A9A
|
public static let red200 = SFColor(hex: 0xEF9A9A)!
|
|
/// SwifterSwift: hex #E57373
|
public static let red300 = SFColor(hex: 0xE57373)!
|
|
/// SwifterSwift: hex #EF5350
|
public static let red400 = SFColor(hex: 0xEF5350)!
|
|
/// SwifterSwift: hex #F44336
|
public static let red500 = SFColor(hex: 0xF44336)!
|
|
/// SwifterSwift: hex #E53935
|
public static let red600 = SFColor(hex: 0xE53935)!
|
|
/// SwifterSwift: hex #D32F2F
|
public static let red700 = SFColor(hex: 0xD32F2F)!
|
|
/// SwifterSwift: hex #C62828
|
public static let red800 = SFColor(hex: 0xC62828)!
|
|
/// SwifterSwift: hex #B71C1C
|
public static let red900 = SFColor(hex: 0xB71C1C)!
|
|
/// SwifterSwift: hex #FF8A80
|
public static let redA100 = SFColor(hex: 0xFF8A80)!
|
|
/// SwifterSwift: hex #FF5252
|
public static let redA200 = SFColor(hex: 0xFF5252)!
|
|
/// SwifterSwift: hex #FF1744
|
public static let redA400 = SFColor(hex: 0xFF1744)!
|
|
/// SwifterSwift: hex #D50000
|
public static let redA700 = SFColor(hex: 0xD50000)!
|
|
/// SwifterSwift: color pink500
|
public static let pink = pink500
|
|
/// SwifterSwift: hex #FCE4EC
|
public static let pink50 = SFColor(hex: 0xFCE4EC)!
|
|
/// SwifterSwift: hex #F8BBD0
|
public static let pink100 = SFColor(hex: 0xF8BBD0)!
|
|
/// SwifterSwift: hex #F48FB1
|
public static let pink200 = SFColor(hex: 0xF48FB1)!
|
|
/// SwifterSwift: hex #F06292
|
public static let pink300 = SFColor(hex: 0xF06292)!
|
|
/// SwifterSwift: hex #EC407A
|
public static let pink400 = SFColor(hex: 0xEC407A)!
|
|
/// SwifterSwift: hex #E91E63
|
public static let pink500 = SFColor(hex: 0xE91E63)!
|
|
/// SwifterSwift: hex #D81B60
|
public static let pink600 = SFColor(hex: 0xD81B60)!
|
|
/// SwifterSwift: hex #C2185B
|
public static let pink700 = SFColor(hex: 0xC2185B)!
|
|
/// SwifterSwift: hex #AD1457
|
public static let pink800 = SFColor(hex: 0xAD1457)!
|
|
/// SwifterSwift: hex #880E4F
|
public static let pink900 = SFColor(hex: 0x880E4F)!
|
|
/// SwifterSwift: hex #FF80AB
|
public static let pinkA100 = SFColor(hex: 0xFF80AB)!
|
|
/// SwifterSwift: hex #FF4081
|
public static let pinkA200 = SFColor(hex: 0xFF4081)!
|
|
/// SwifterSwift: hex #F50057
|
public static let pinkA400 = SFColor(hex: 0xF50057)!
|
|
/// SwifterSwift: hex #C51162
|
public static let pinkA700 = SFColor(hex: 0xC51162)!
|
|
/// SwifterSwift: color purple500
|
public static let purple = purple500
|
|
/// SwifterSwift: hex #F3E5F5
|
public static let purple50 = SFColor(hex: 0xF3E5F5)!
|
|
/// SwifterSwift: hex #E1BEE7
|
public static let purple100 = SFColor(hex: 0xE1BEE7)!
|
|
/// SwifterSwift: hex #CE93D8
|
public static let purple200 = SFColor(hex: 0xCE93D8)!
|
|
/// SwifterSwift: hex #BA68C8
|
public static let purple300 = SFColor(hex: 0xBA68C8)!
|
|
/// SwifterSwift: hex #AB47BC
|
public static let purple400 = SFColor(hex: 0xAB47BC)!
|
|
/// SwifterSwift: hex #9C27B0
|
public static let purple500 = SFColor(hex: 0x9C27B0)!
|
|
/// SwifterSwift: hex #8E24AA
|
public static let purple600 = SFColor(hex: 0x8E24AA)!
|
|
/// SwifterSwift: hex #7B1FA2
|
public static let purple700 = SFColor(hex: 0x7B1FA2)!
|
|
/// SwifterSwift: hex #6A1B9A
|
public static let purple800 = SFColor(hex: 0x6A1B9A)!
|
|
/// SwifterSwift: hex #4A148C
|
public static let purple900 = SFColor(hex: 0x4A148C)!
|
|
/// SwifterSwift: hex #EA80FC
|
public static let purpleA100 = SFColor(hex: 0xEA80FC)!
|
|
/// SwifterSwift: hex #E040FB
|
public static let purpleA200 = SFColor(hex: 0xE040FB)!
|
|
/// SwifterSwift: hex #D500F9
|
public static let purpleA400 = SFColor(hex: 0xD500F9)!
|
|
/// SwifterSwift: hex #AA00FF
|
public static let purpleA700 = SFColor(hex: 0xAA00FF)!
|
|
/// SwifterSwift: color deepPurple500
|
public static let deepPurple = deepPurple500
|
|
/// SwifterSwift: hex #EDE7F6
|
public static let deepPurple50 = SFColor(hex: 0xEDE7F6)!
|
|
/// SwifterSwift: hex #D1C4E9
|
public static let deepPurple100 = SFColor(hex: 0xD1C4E9)!
|
|
/// SwifterSwift: hex #B39DDB
|
public static let deepPurple200 = SFColor(hex: 0xB39DDB)!
|
|
/// SwifterSwift: hex #9575CD
|
public static let deepPurple300 = SFColor(hex: 0x9575CD)!
|
|
/// SwifterSwift: hex #7E57C2
|
public static let deepPurple400 = SFColor(hex: 0x7E57C2)!
|
|
/// SwifterSwift: hex #673AB7
|
public static let deepPurple500 = SFColor(hex: 0x673AB7)!
|
|
/// SwifterSwift: hex #5E35B1
|
public static let deepPurple600 = SFColor(hex: 0x5E35B1)!
|
|
/// SwifterSwift: hex #512DA8
|
public static let deepPurple700 = SFColor(hex: 0x512DA8)!
|
|
/// SwifterSwift: hex #4527A0
|
public static let deepPurple800 = SFColor(hex: 0x4527A0)!
|
|
/// SwifterSwift: hex #311B92
|
public static let deepPurple900 = SFColor(hex: 0x311B92)!
|
|
/// SwifterSwift: hex #B388FF
|
public static let deepPurpleA100 = SFColor(hex: 0xB388FF)!
|
|
/// SwifterSwift: hex #7C4DFF
|
public static let deepPurpleA200 = SFColor(hex: 0x7C4DFF)!
|
|
/// SwifterSwift: hex #651FFF
|
public static let deepPurpleA400 = SFColor(hex: 0x651FFF)!
|
|
/// SwifterSwift: hex #6200EA
|
public static let deepPurpleA700 = SFColor(hex: 0x6200EA)!
|
|
/// SwifterSwift: color indigo500
|
public static let indigo = indigo500
|
|
/// SwifterSwift: hex #E8EAF6
|
public static let indigo50 = SFColor(hex: 0xE8EAF6)!
|
|
/// SwifterSwift: hex #C5CAE9
|
public static let indigo100 = SFColor(hex: 0xC5CAE9)!
|
|
/// SwifterSwift: hex #9FA8DA
|
public static let indigo200 = SFColor(hex: 0x9FA8DA)!
|
|
/// SwifterSwift: hex #7986CB
|
public static let indigo300 = SFColor(hex: 0x7986CB)!
|
|
/// SwifterSwift: hex #5C6BC0
|
public static let indigo400 = SFColor(hex: 0x5C6BC0)!
|
|
/// SwifterSwift: hex #3F51B5
|
public static let indigo500 = SFColor(hex: 0x3F51B5)!
|
|
/// SwifterSwift: hex #3949AB
|
public static let indigo600 = SFColor(hex: 0x3949AB)!
|
|
/// SwifterSwift: hex #303F9F
|
public static let indigo700 = SFColor(hex: 0x303F9F)!
|
|
/// SwifterSwift: hex #283593
|
public static let indigo800 = SFColor(hex: 0x283593)!
|
|
/// SwifterSwift: hex #1A237E
|
public static let indigo900 = SFColor(hex: 0x1A237E)!
|
|
/// SwifterSwift: hex #8C9EFF
|
public static let indigoA100 = SFColor(hex: 0x8C9EFF)!
|
|
/// SwifterSwift: hex #536DFE
|
public static let indigoA200 = SFColor(hex: 0x536DFE)!
|
|
/// SwifterSwift: hex #3D5AFE
|
public static let indigoA400 = SFColor(hex: 0x3D5AFE)!
|
|
/// SwifterSwift: hex #304FFE
|
public static let indigoA700 = SFColor(hex: 0x304FFE)!
|
|
/// SwifterSwift: color blue500
|
public static let blue = blue500
|
|
/// SwifterSwift: hex #E3F2FD
|
public static let blue50 = SFColor(hex: 0xE3F2FD)!
|
|
/// SwifterSwift: hex #BBDEFB
|
public static let blue100 = SFColor(hex: 0xBBDEFB)!
|
|
/// SwifterSwift: hex #90CAF9
|
public static let blue200 = SFColor(hex: 0x90CAF9)!
|
|
/// SwifterSwift: hex #64B5F6
|
public static let blue300 = SFColor(hex: 0x64B5F6)!
|
|
/// SwifterSwift: hex #42A5F5
|
public static let blue400 = SFColor(hex: 0x42A5F5)!
|
|
/// SwifterSwift: hex #2196F3
|
public static let blue500 = SFColor(hex: 0x2196F3)!
|
|
/// SwifterSwift: hex #1E88E5
|
public static let blue600 = SFColor(hex: 0x1E88E5)!
|
|
/// SwifterSwift: hex #1976D2
|
public static let blue700 = SFColor(hex: 0x1976D2)!
|
|
/// SwifterSwift: hex #1565C0
|
public static let blue800 = SFColor(hex: 0x1565C0)!
|
|
/// SwifterSwift: hex #0D47A1
|
public static let blue900 = SFColor(hex: 0x0D47A1)!
|
|
/// SwifterSwift: hex #82B1FF
|
public static let blueA100 = SFColor(hex: 0x82B1FF)!
|
|
/// SwifterSwift: hex #448AFF
|
public static let blueA200 = SFColor(hex: 0x448AFF)!
|
|
/// SwifterSwift: hex #2979FF
|
public static let blueA400 = SFColor(hex: 0x2979FF)!
|
|
/// SwifterSwift: hex #2962FF
|
public static let blueA700 = SFColor(hex: 0x2962FF)!
|
|
/// SwifterSwift: color lightBlue500
|
public static let lightBlue = lightBlue500
|
|
/// SwifterSwift: hex #E1F5FE
|
public static let lightBlue50 = SFColor(hex: 0xE1F5FE)!
|
|
/// SwifterSwift: hex #B3E5FC
|
public static let lightBlue100 = SFColor(hex: 0xB3E5FC)!
|
|
/// SwifterSwift: hex #81D4FA
|
public static let lightBlue200 = SFColor(hex: 0x81D4FA)!
|
|
/// SwifterSwift: hex #4FC3F7
|
public static let lightBlue300 = SFColor(hex: 0x4FC3F7)!
|
|
/// SwifterSwift: hex #29B6F6
|
public static let lightBlue400 = SFColor(hex: 0x29B6F6)!
|
|
/// SwifterSwift: hex #03A9F4
|
public static let lightBlue500 = SFColor(hex: 0x03A9F4)!
|
|
/// SwifterSwift: hex #039BE5
|
public static let lightBlue600 = SFColor(hex: 0x039BE5)!
|
|
/// SwifterSwift: hex #0288D1
|
public static let lightBlue700 = SFColor(hex: 0x0288D1)!
|
|
/// SwifterSwift: hex #0277BD
|
public static let lightBlue800 = SFColor(hex: 0x0277BD)!
|
|
/// SwifterSwift: hex #01579B
|
public static let lightBlue900 = SFColor(hex: 0x01579B)!
|
|
/// SwifterSwift: hex #80D8FF
|
public static let lightBlueA100 = SFColor(hex: 0x80D8FF)!
|
|
/// SwifterSwift: hex #40C4FF
|
public static let lightBlueA200 = SFColor(hex: 0x40C4FF)!
|
|
/// SwifterSwift: hex #00B0FF
|
public static let lightBlueA400 = SFColor(hex: 0x00B0FF)!
|
|
/// SwifterSwift: hex #0091EA
|
public static let lightBlueA700 = SFColor(hex: 0x0091EA)!
|
|
/// SwifterSwift: color cyan500
|
public static let cyan = cyan500
|
|
/// SwifterSwift: hex #E0F7FA
|
public static let cyan50 = SFColor(hex: 0xE0F7FA)!
|
|
/// SwifterSwift: hex #B2EBF2
|
public static let cyan100 = SFColor(hex: 0xB2EBF2)!
|
|
/// SwifterSwift: hex #80DEEA
|
public static let cyan200 = SFColor(hex: 0x80DEEA)!
|
|
/// SwifterSwift: hex #4DD0E1
|
public static let cyan300 = SFColor(hex: 0x4DD0E1)!
|
|
/// SwifterSwift: hex #26C6DA
|
public static let cyan400 = SFColor(hex: 0x26C6DA)!
|
|
/// SwifterSwift: hex #00BCD4
|
public static let cyan500 = SFColor(hex: 0x00BCD4)!
|
|
/// SwifterSwift: hex #00ACC1
|
public static let cyan600 = SFColor(hex: 0x00ACC1)!
|
|
/// SwifterSwift: hex #0097A7
|
public static let cyan700 = SFColor(hex: 0x0097A7)!
|
|
/// SwifterSwift: hex #00838F
|
public static let cyan800 = SFColor(hex: 0x00838F)!
|
|
/// SwifterSwift: hex #006064
|
public static let cyan900 = SFColor(hex: 0x006064)!
|
|
/// SwifterSwift: hex #84FFFF
|
public static let cyanA100 = SFColor(hex: 0x84FFFF)!
|
|
/// SwifterSwift: hex #18FFFF
|
public static let cyanA200 = SFColor(hex: 0x18FFFF)!
|
|
/// SwifterSwift: hex #00E5FF
|
public static let cyanA400 = SFColor(hex: 0x00E5FF)!
|
|
/// SwifterSwift: hex #00B8D4
|
public static let cyanA700 = SFColor(hex: 0x00B8D4)!
|
|
/// SwifterSwift: color teal500
|
public static let teal = teal500
|
|
/// SwifterSwift: hex #E0F2F1
|
public static let teal50 = SFColor(hex: 0xE0F2F1)!
|
|
/// SwifterSwift: hex #B2DFDB
|
public static let teal100 = SFColor(hex: 0xB2DFDB)!
|
|
/// SwifterSwift: hex #80CBC4
|
public static let teal200 = SFColor(hex: 0x80CBC4)!
|
|
/// SwifterSwift: hex #4DB6AC
|
public static let teal300 = SFColor(hex: 0x4DB6AC)!
|
|
/// SwifterSwift: hex #26A69A
|
public static let teal400 = SFColor(hex: 0x26A69A)!
|
|
/// SwifterSwift: hex #009688
|
public static let teal500 = SFColor(hex: 0x009688)!
|
|
/// SwifterSwift: hex #00897B
|
public static let teal600 = SFColor(hex: 0x00897B)!
|
|
/// SwifterSwift: hex #00796B
|
public static let teal700 = SFColor(hex: 0x00796B)!
|
|
/// SwifterSwift: hex #00695C
|
public static let teal800 = SFColor(hex: 0x00695C)!
|
|
/// SwifterSwift: hex #004D40
|
public static let teal900 = SFColor(hex: 0x004D40)!
|
|
/// SwifterSwift: hex #A7FFEB
|
public static let tealA100 = SFColor(hex: 0xA7FFEB)!
|
|
/// SwifterSwift: hex #64FFDA
|
public static let tealA200 = SFColor(hex: 0x64FFDA)!
|
|
/// SwifterSwift: hex #1DE9B6
|
public static let tealA400 = SFColor(hex: 0x1DE9B6)!
|
|
/// SwifterSwift: hex #00BFA5
|
public static let tealA700 = SFColor(hex: 0x00BFA5)!
|
|
/// SwifterSwift: color green500
|
public static let green = green500
|
|
/// SwifterSwift: hex #E8F5E9
|
public static let green50 = SFColor(hex: 0xE8F5E9)!
|
|
/// SwifterSwift: hex #C8E6C9
|
public static let green100 = SFColor(hex: 0xC8E6C9)!
|
|
/// SwifterSwift: hex #A5D6A7
|
public static let green200 = SFColor(hex: 0xA5D6A7)!
|
|
/// SwifterSwift: hex #81C784
|
public static let green300 = SFColor(hex: 0x81C784)!
|
|
/// SwifterSwift: hex #66BB6A
|
public static let green400 = SFColor(hex: 0x66BB6A)!
|
|
/// SwifterSwift: hex #4CAF50
|
public static let green500 = SFColor(hex: 0x4CAF50)!
|
|
/// SwifterSwift: hex #43A047
|
public static let green600 = SFColor(hex: 0x43A047)!
|
|
/// SwifterSwift: hex #388E3C
|
public static let green700 = SFColor(hex: 0x388E3C)!
|
|
/// SwifterSwift: hex #2E7D32
|
public static let green800 = SFColor(hex: 0x2E7D32)!
|
|
/// SwifterSwift: hex #1B5E20
|
public static let green900 = SFColor(hex: 0x1B5E20)!
|
|
/// SwifterSwift: hex #B9F6CA
|
public static let greenA100 = SFColor(hex: 0xB9F6CA)!
|
|
/// SwifterSwift: hex #69F0AE
|
public static let greenA200 = SFColor(hex: 0x69F0AE)!
|
|
/// SwifterSwift: hex #00E676
|
public static let greenA400 = SFColor(hex: 0x00E676)!
|
|
/// SwifterSwift: hex #00C853
|
public static let greenA700 = SFColor(hex: 0x00C853)!
|
|
/// SwifterSwift: color lightGreen500
|
public static let lightGreen = lightGreen500
|
|
/// SwifterSwift: hex #F1F8E9
|
public static let lightGreen50 = SFColor(hex: 0xF1F8E9)!
|
|
/// SwifterSwift: hex #DCEDC8
|
public static let lightGreen100 = SFColor(hex: 0xDCEDC8)!
|
|
/// SwifterSwift: hex #C5E1A5
|
public static let lightGreen200 = SFColor(hex: 0xC5E1A5)!
|
|
/// SwifterSwift: hex #AED581
|
public static let lightGreen300 = SFColor(hex: 0xAED581)!
|
|
/// SwifterSwift: hex #9CCC65
|
public static let lightGreen400 = SFColor(hex: 0x9CCC65)!
|
|
/// SwifterSwift: hex #8BC34A
|
public static let lightGreen500 = SFColor(hex: 0x8BC34A)!
|
|
/// SwifterSwift: hex #7CB342
|
public static let lightGreen600 = SFColor(hex: 0x7CB342)!
|
|
/// SwifterSwift: hex #689F38
|
public static let lightGreen700 = SFColor(hex: 0x689F38)!
|
|
/// SwifterSwift: hex #558B2F
|
public static let lightGreen800 = SFColor(hex: 0x558B2F)!
|
|
/// SwifterSwift: hex #33691E
|
public static let lightGreen900 = SFColor(hex: 0x33691E)!
|
|
/// SwifterSwift: hex #CCFF90
|
public static let lightGreenA100 = SFColor(hex: 0xCCFF90)!
|
|
/// SwifterSwift: hex #B2FF59
|
public static let lightGreenA200 = SFColor(hex: 0xB2FF59)!
|
|
/// SwifterSwift: hex #76FF03
|
public static let lightGreenA400 = SFColor(hex: 0x76FF03)!
|
|
/// SwifterSwift: hex #64DD17
|
public static let lightGreenA700 = SFColor(hex: 0x64DD17)!
|
|
/// SwifterSwift: color lime500
|
public static let lime = lime500
|
|
/// SwifterSwift: hex #F9FBE7
|
public static let lime50 = SFColor(hex: 0xF9FBE7)!
|
|
/// SwifterSwift: hex #F0F4C3
|
public static let lime100 = SFColor(hex: 0xF0F4C3)!
|
|
/// SwifterSwift: hex #E6EE9C
|
public static let lime200 = SFColor(hex: 0xE6EE9C)!
|
|
/// SwifterSwift: hex #DCE775
|
public static let lime300 = SFColor(hex: 0xDCE775)!
|
|
/// SwifterSwift: hex #D4E157
|
public static let lime400 = SFColor(hex: 0xD4E157)!
|
|
/// SwifterSwift: hex #CDDC39
|
public static let lime500 = SFColor(hex: 0xCDDC39)!
|
|
/// SwifterSwift: hex #C0CA33
|
public static let lime600 = SFColor(hex: 0xC0CA33)!
|
|
/// SwifterSwift: hex #AFB42B
|
public static let lime700 = SFColor(hex: 0xAFB42B)!
|
|
/// SwifterSwift: hex #9E9D24
|
public static let lime800 = SFColor(hex: 0x9E9D24)!
|
|
/// SwifterSwift: hex #827717
|
public static let lime900 = SFColor(hex: 0x827717)!
|
|
/// SwifterSwift: hex #F4FF81
|
public static let limeA100 = SFColor(hex: 0xF4FF81)!
|
|
/// SwifterSwift: hex #EEFF41
|
public static let limeA200 = SFColor(hex: 0xEEFF41)!
|
|
/// SwifterSwift: hex #C6FF00
|
public static let limeA400 = SFColor(hex: 0xC6FF00)!
|
|
/// SwifterSwift: hex #AEEA00
|
public static let limeA700 = SFColor(hex: 0xAEEA00)!
|
|
/// SwifterSwift: color yellow500
|
public static let yellow = yellow500
|
|
/// SwifterSwift: hex #FFFDE7
|
public static let yellow50 = SFColor(hex: 0xFFFDE7)!
|
|
/// SwifterSwift: hex #FFF9C4
|
public static let yellow100 = SFColor(hex: 0xFFF9C4)!
|
|
/// SwifterSwift: hex #FFF59D
|
public static let yellow200 = SFColor(hex: 0xFFF59D)!
|
|
/// SwifterSwift: hex #FFF176
|
public static let yellow300 = SFColor(hex: 0xFFF176)!
|
|
/// SwifterSwift: hex #FFEE58
|
public static let yellow400 = SFColor(hex: 0xFFEE58)!
|
|
/// SwifterSwift: hex #FFEB3B
|
public static let yellow500 = SFColor(hex: 0xFFEB3B)!
|
|
/// SwifterSwift: hex #FDD835
|
public static let yellow600 = SFColor(hex: 0xFDD835)!
|
|
/// SwifterSwift: hex #FBC02D
|
public static let yellow700 = SFColor(hex: 0xFBC02D)!
|
|
/// SwifterSwift: hex #F9A825
|
public static let yellow800 = SFColor(hex: 0xF9A825)!
|
|
/// SwifterSwift: hex #F57F17
|
public static let yellow900 = SFColor(hex: 0xF57F17)!
|
|
/// SwifterSwift: hex #FFFF8D
|
public static let yellowA100 = SFColor(hex: 0xFFFF8D)!
|
|
/// SwifterSwift: hex #FFFF00
|
public static let yellowA200 = SFColor(hex: 0xFFFF00)!
|
|
/// SwifterSwift: hex #FFEA00
|
public static let yellowA400 = SFColor(hex: 0xFFEA00)!
|
|
/// SwifterSwift: hex #FFD600
|
public static let yellowA700 = SFColor(hex: 0xFFD600)!
|
|
/// SwifterSwift: color amber500
|
public static let amber = amber500
|
|
/// SwifterSwift: hex #FFF8E1
|
public static let amber50 = SFColor(hex: 0xFFF8E1)!
|
|
/// SwifterSwift: hex #FFECB3
|
public static let amber100 = SFColor(hex: 0xFFECB3)!
|
|
/// SwifterSwift: hex #FFE082
|
public static let amber200 = SFColor(hex: 0xFFE082)!
|
|
/// SwifterSwift: hex #FFD54F
|
public static let amber300 = SFColor(hex: 0xFFD54F)!
|
|
/// SwifterSwift: hex #FFCA28
|
public static let amber400 = SFColor(hex: 0xFFCA28)!
|
|
/// SwifterSwift: hex #FFC107
|
public static let amber500 = SFColor(hex: 0xFFC107)!
|
|
/// SwifterSwift: hex #FFB300
|
public static let amber600 = SFColor(hex: 0xFFB300)!
|
|
/// SwifterSwift: hex #FFA000
|
public static let amber700 = SFColor(hex: 0xFFA000)!
|
|
/// SwifterSwift: hex #FF8F00
|
public static let amber800 = SFColor(hex: 0xFF8F00)!
|
|
/// SwifterSwift: hex #FF6F00
|
public static let amber900 = SFColor(hex: 0xFF6F00)!
|
|
/// SwifterSwift: hex #FFE57F
|
public static let amberA100 = SFColor(hex: 0xFFE57F)!
|
|
/// SwifterSwift: hex #FFD740
|
public static let amberA200 = SFColor(hex: 0xFFD740)!
|
|
/// SwifterSwift: hex #FFC400
|
public static let amberA400 = SFColor(hex: 0xFFC400)!
|
|
/// SwifterSwift: hex #FFAB00
|
public static let amberA700 = SFColor(hex: 0xFFAB00)!
|
|
/// SwifterSwift: color orange500
|
public static let orange = orange500
|
|
/// SwifterSwift: hex #FFF3E0
|
public static let orange50 = SFColor(hex: 0xFFF3E0)!
|
|
/// SwifterSwift: hex #FFE0B2
|
public static let orange100 = SFColor(hex: 0xFFE0B2)!
|
|
/// SwifterSwift: hex #FFCC80
|
public static let orange200 = SFColor(hex: 0xFFCC80)!
|
|
/// SwifterSwift: hex #FFB74D
|
public static let orange300 = SFColor(hex: 0xFFB74D)!
|
|
/// SwifterSwift: hex #FFA726
|
public static let orange400 = SFColor(hex: 0xFFA726)!
|
|
/// SwifterSwift: hex #FF9800
|
public static let orange500 = SFColor(hex: 0xFF9800)!
|
|
/// SwifterSwift: hex #FB8C00
|
public static let orange600 = SFColor(hex: 0xFB8C00)!
|
|
/// SwifterSwift: hex #F57C00
|
public static let orange700 = SFColor(hex: 0xF57C00)!
|
|
/// SwifterSwift: hex #EF6C00
|
public static let orange800 = SFColor(hex: 0xEF6C00)!
|
|
/// SwifterSwift: hex #E65100
|
public static let orange900 = SFColor(hex: 0xE65100)!
|
|
/// SwifterSwift: hex #FFD180
|
public static let orangeA100 = SFColor(hex: 0xFFD180)!
|
|
/// SwifterSwift: hex #FFAB40
|
public static let orangeA200 = SFColor(hex: 0xFFAB40)!
|
|
/// SwifterSwift: hex #FF9100
|
public static let orangeA400 = SFColor(hex: 0xFF9100)!
|
|
/// SwifterSwift: hex #FF6D00
|
public static let orangeA700 = SFColor(hex: 0xFF6D00)!
|
|
/// SwifterSwift: color deepOrange500
|
public static let deepOrange = deepOrange500
|
|
/// SwifterSwift: hex #FBE9E7
|
public static let deepOrange50 = SFColor(hex: 0xFBE9E7)!
|
|
/// SwifterSwift: hex #FFCCBC
|
public static let deepOrange100 = SFColor(hex: 0xFFCCBC)!
|
|
/// SwifterSwift: hex #FFAB91
|
public static let deepOrange200 = SFColor(hex: 0xFFAB91)!
|
|
/// SwifterSwift: hex #FF8A65
|
public static let deepOrange300 = SFColor(hex: 0xFF8A65)!
|
|
/// SwifterSwift: hex #FF7043
|
public static let deepOrange400 = SFColor(hex: 0xFF7043)!
|
|
/// SwifterSwift: hex #FF5722
|
public static let deepOrange500 = SFColor(hex: 0xFF5722)!
|
|
/// SwifterSwift: hex #F4511E
|
public static let deepOrange600 = SFColor(hex: 0xF4511E)!
|
|
/// SwifterSwift: hex #E64A19
|
public static let deepOrange700 = SFColor(hex: 0xE64A19)!
|
|
/// SwifterSwift: hex #D84315
|
public static let deepOrange800 = SFColor(hex: 0xD84315)!
|
|
/// SwifterSwift: hex #BF360C
|
public static let deepOrange900 = SFColor(hex: 0xBF360C)!
|
|
/// SwifterSwift: hex #FF9E80
|
public static let deepOrangeA100 = SFColor(hex: 0xFF9E80)!
|
|
/// SwifterSwift: hex #FF6E40
|
public static let deepOrangeA200 = SFColor(hex: 0xFF6E40)!
|
|
/// SwifterSwift: hex #FF3D00
|
public static let deepOrangeA400 = SFColor(hex: 0xFF3D00)!
|
|
/// SwifterSwift: hex #DD2C00
|
public static let deepOrangeA700 = SFColor(hex: 0xDD2C00)!
|
|
/// SwifterSwift: color brown500
|
public static let brown = brown500
|
|
/// SwifterSwift: hex #EFEBE9
|
public static let brown50 = SFColor(hex: 0xEFEBE9)!
|
|
/// SwifterSwift: hex #D7CCC8
|
public static let brown100 = SFColor(hex: 0xD7CCC8)!
|
|
/// SwifterSwift: hex #BCAAA4
|
public static let brown200 = SFColor(hex: 0xBCAAA4)!
|
|
/// SwifterSwift: hex #A1887F
|
public static let brown300 = SFColor(hex: 0xA1887F)!
|
|
/// SwifterSwift: hex #8D6E63
|
public static let brown400 = SFColor(hex: 0x8D6E63)!
|
|
/// SwifterSwift: hex #795548
|
public static let brown500 = SFColor(hex: 0x795548)!
|
|
/// SwifterSwift: hex #6D4C41
|
public static let brown600 = SFColor(hex: 0x6D4C41)!
|
|
/// SwifterSwift: hex #5D4037
|
public static let brown700 = SFColor(hex: 0x5D4037)!
|
|
/// SwifterSwift: hex #4E342E
|
public static let brown800 = SFColor(hex: 0x4E342E)!
|
|
/// SwifterSwift: hex #3E2723
|
public static let brown900 = SFColor(hex: 0x3E2723)!
|
|
/// SwifterSwift: color grey500
|
public static let grey = grey500
|
|
/// SwifterSwift: hex #FAFAFA
|
public static let grey50 = SFColor(hex: 0xFAFAFA)!
|
|
/// SwifterSwift: hex #F5F5F5
|
public static let grey100 = SFColor(hex: 0xF5F5F5)!
|
|
/// SwifterSwift: hex #EEEEEE
|
public static let grey200 = SFColor(hex: 0xEEEEEE)!
|
|
/// SwifterSwift: hex #E0E0E0
|
public static let grey300 = SFColor(hex: 0xE0E0E0)!
|
|
/// SwifterSwift: hex #BDBDBD
|
public static let grey400 = SFColor(hex: 0xBDBDBD)!
|
|
/// SwifterSwift: hex #9E9E9E
|
public static let grey500 = SFColor(hex: 0x9E9E9E)!
|
|
/// SwifterSwift: hex #757575
|
public static let grey600 = SFColor(hex: 0x757575)!
|
|
/// SwifterSwift: hex #616161
|
public static let grey700 = SFColor(hex: 0x616161)!
|
|
/// SwifterSwift: hex #424242
|
public static let grey800 = SFColor(hex: 0x424242)!
|
|
/// SwifterSwift: hex #212121
|
public static let grey900 = SFColor(hex: 0x212121)!
|
|
/// SwifterSwift: color blueGrey500
|
public static let blueGrey = blueGrey500
|
|
/// SwifterSwift: hex #ECEFF1
|
public static let blueGrey50 = SFColor(hex: 0xECEFF1)!
|
|
/// SwifterSwift: hex #CFD8DC
|
public static let blueGrey100 = SFColor(hex: 0xCFD8DC)!
|
|
/// SwifterSwift: hex #B0BEC5
|
public static let blueGrey200 = SFColor(hex: 0xB0BEC5)!
|
|
/// SwifterSwift: hex #90A4AE
|
public static let blueGrey300 = SFColor(hex: 0x90A4AE)!
|
|
/// SwifterSwift: hex #78909C
|
public static let blueGrey400 = SFColor(hex: 0x78909C)!
|
|
/// SwifterSwift: hex #607D8B
|
public static let blueGrey500 = SFColor(hex: 0x607D8B)!
|
|
/// SwifterSwift: hex #546E7A
|
public static let blueGrey600 = SFColor(hex: 0x546E7A)!
|
|
/// SwifterSwift: hex #455A64
|
public static let blueGrey700 = SFColor(hex: 0x455A64)!
|
|
/// SwifterSwift: hex #37474F
|
public static let blueGrey800 = SFColor(hex: 0x37474F)!
|
|
/// SwifterSwift: hex #263238
|
public static let blueGrey900 = SFColor(hex: 0x263238)!
|
|
/// SwifterSwift: hex #000000
|
public static let black = SFColor(hex: 0x000000)!
|
|
/// SwifterSwift: hex #FFFFFF
|
public static let white = SFColor(hex: 0xFFFFFF)!
|
}
|
}
|
|
// MARK: - CSS colors
|
|
public extension SFColor {
|
/// SwifterSwift: CSS colors.
|
enum CSS {
|
// http://www.w3schools.com/colors/colors_names.asp
|
|
/// SwifterSwift: hex #F0F8FF
|
public static let aliceBlue = SFColor(hex: 0xF0F8FF)!
|
|
/// SwifterSwift: hex #FAEBD7
|
public static let antiqueWhite = SFColor(hex: 0xFAEBD7)!
|
|
/// SwifterSwift: hex #00FFFF
|
public static let aqua = SFColor(hex: 0x00FFFF)!
|
|
/// SwifterSwift: hex #7FFFD4
|
public static let aquamarine = SFColor(hex: 0x7FFFD4)!
|
|
/// SwifterSwift: hex #F0FFFF
|
public static let azure = SFColor(hex: 0xF0FFFF)!
|
|
/// SwifterSwift: hex #F5F5DC
|
public static let beige = SFColor(hex: 0xF5F5DC)!
|
|
/// SwifterSwift: hex #FFE4C4
|
public static let bisque = SFColor(hex: 0xFFE4C4)!
|
|
/// SwifterSwift: hex #000000
|
public static let black = SFColor(hex: 0x000000)!
|
|
/// SwifterSwift: hex #FFEBCD
|
public static let blanchedAlmond = SFColor(hex: 0xFFEBCD)!
|
|
/// SwifterSwift: hex #0000FF
|
public static let blue = SFColor(hex: 0x0000FF)!
|
|
/// SwifterSwift: hex #8A2BE2
|
public static let blueViolet = SFColor(hex: 0x8A2BE2)!
|
|
/// SwifterSwift: hex #A52A2A
|
public static let brown = SFColor(hex: 0xA52A2A)!
|
|
/// SwifterSwift: hex #DEB887
|
public static let burlyWood = SFColor(hex: 0xDEB887)!
|
|
/// SwifterSwift: hex #5F9EA0
|
public static let cadetBlue = SFColor(hex: 0x5F9EA0)!
|
|
/// SwifterSwift: hex #7FFF00
|
public static let chartreuse = SFColor(hex: 0x7FFF00)!
|
|
/// SwifterSwift: hex #D2691E
|
public static let chocolate = SFColor(hex: 0xD2691E)!
|
|
/// SwifterSwift: hex #FF7F50
|
public static let coral = SFColor(hex: 0xFF7F50)!
|
|
/// SwifterSwift: hex #6495ED
|
public static let cornflowerBlue = SFColor(hex: 0x6495ED)!
|
|
/// SwifterSwift: hex #FFF8DC
|
public static let cornsilk = SFColor(hex: 0xFFF8DC)!
|
|
/// SwifterSwift: hex #DC143C
|
public static let crimson = SFColor(hex: 0xDC143C)!
|
|
/// SwifterSwift: hex #00FFFF
|
public static let cyan = SFColor(hex: 0x00FFFF)!
|
|
/// SwifterSwift: hex #00008B
|
public static let darkBlue = SFColor(hex: 0x00008B)!
|
|
/// SwifterSwift: hex #008B8B
|
public static let darkCyan = SFColor(hex: 0x008B8B)!
|
|
/// SwifterSwift: hex #B8860B
|
public static let darkGoldenRod = SFColor(hex: 0xB8860B)!
|
|
/// SwifterSwift: hex #A9A9A9
|
public static let darkGray = SFColor(hex: 0xA9A9A9)!
|
|
/// SwifterSwift: hex #A9A9A9
|
public static let darkGrey = SFColor(hex: 0xA9A9A9)!
|
|
/// SwifterSwift: hex #006400
|
public static let darkGreen = SFColor(hex: 0x006400)!
|
|
/// SwifterSwift: hex #BDB76B
|
public static let darkKhaki = SFColor(hex: 0xBDB76B)!
|
|
/// SwifterSwift: hex #8B008B
|
public static let darkMagenta = SFColor(hex: 0x8B008B)!
|
|
/// SwifterSwift: hex #556B2F
|
public static let darkOliveGreen = SFColor(hex: 0x556B2F)!
|
|
/// SwifterSwift: hex #FF8C00
|
public static let darkOrange = SFColor(hex: 0xFF8C00)!
|
|
/// SwifterSwift: hex #9932CC
|
public static let darkOrchid = SFColor(hex: 0x9932CC)!
|
|
/// SwifterSwift: hex #8B0000
|
public static let darkRed = SFColor(hex: 0x8B0000)!
|
|
/// SwifterSwift: hex #E9967A
|
public static let darkSalmon = SFColor(hex: 0xE9967A)!
|
|
/// SwifterSwift: hex #8FBC8F
|
public static let darkSeaGreen = SFColor(hex: 0x8FBC8F)!
|
|
/// SwifterSwift: hex #483D8B
|
public static let darkSlateBlue = SFColor(hex: 0x483D8B)!
|
|
/// SwifterSwift: hex #2F4F4F
|
public static let darkSlateGray = SFColor(hex: 0x2F4F4F)!
|
|
/// SwifterSwift: hex #2F4F4F
|
public static let darkSlateGrey = SFColor(hex: 0x2F4F4F)!
|
|
/// SwifterSwift: hex #00CED1
|
public static let darkTurquoise = SFColor(hex: 0x00CED1)!
|
|
/// SwifterSwift: hex #9400D3
|
public static let darkViolet = SFColor(hex: 0x9400D3)!
|
|
/// SwifterSwift: hex #FF1493
|
public static let deepPink = SFColor(hex: 0xFF1493)!
|
|
/// SwifterSwift: hex #00BFFF
|
public static let deepSkyBlue = SFColor(hex: 0x00BFFF)!
|
|
/// SwifterSwift: hex #696969
|
public static let dimGray = SFColor(hex: 0x696969)!
|
|
/// SwifterSwift: hex #696969
|
public static let dimGrey = SFColor(hex: 0x696969)!
|
|
/// SwifterSwift: hex #1E90FF
|
public static let dodgerBlue = SFColor(hex: 0x1E90FF)!
|
|
/// SwifterSwift: hex #B22222
|
public static let fireBrick = SFColor(hex: 0xB22222)!
|
|
/// SwifterSwift: hex #FFFAF0
|
public static let floralWhite = SFColor(hex: 0xFFFAF0)!
|
|
/// SwifterSwift: hex #228B22
|
public static let forestGreen = SFColor(hex: 0x228B22)!
|
|
/// SwifterSwift: hex #FF00FF
|
public static let fuchsia = SFColor(hex: 0xFF00FF)!
|
|
/// SwifterSwift: hex #DCDCDC
|
public static let gainsboro = SFColor(hex: 0xDCDCDC)!
|
|
/// SwifterSwift: hex #F8F8FF
|
public static let ghostWhite = SFColor(hex: 0xF8F8FF)!
|
|
/// SwifterSwift: hex #FFD700
|
public static let gold = SFColor(hex: 0xFFD700)!
|
|
/// SwifterSwift: hex #DAA520
|
public static let goldenRod = SFColor(hex: 0xDAA520)!
|
|
/// SwifterSwift: hex #808080
|
public static let gray = SFColor(hex: 0x808080)!
|
|
/// SwifterSwift: hex #808080
|
public static let grey = SFColor(hex: 0x808080)!
|
|
/// SwifterSwift: hex #008000
|
public static let green = SFColor(hex: 0x008000)!
|
|
/// SwifterSwift: hex #ADFF2F
|
public static let greenYellow = SFColor(hex: 0xADFF2F)!
|
|
/// SwifterSwift: hex #F0FFF0
|
public static let honeyDew = SFColor(hex: 0xF0FFF0)!
|
|
/// SwifterSwift: hex #FF69B4
|
public static let hotPink = SFColor(hex: 0xFF69B4)!
|
|
/// SwifterSwift: hex #CD5C5C
|
public static let indianRed = SFColor(hex: 0xCD5C5C)!
|
|
/// SwifterSwift: hex #4B0082
|
public static let indigo = SFColor(hex: 0x4B0082)!
|
|
/// SwifterSwift: hex #FFFFF0
|
public static let ivory = SFColor(hex: 0xFFFFF0)!
|
|
/// SwifterSwift: hex #F0E68C
|
public static let khaki = SFColor(hex: 0xF0E68C)!
|
|
/// SwifterSwift: hex #E6E6FA
|
public static let lavender = SFColor(hex: 0xE6E6FA)!
|
|
/// SwifterSwift: hex #FFF0F5
|
public static let lavenderBlush = SFColor(hex: 0xFFF0F5)!
|
|
/// SwifterSwift: hex #7CFC00
|
public static let lawnGreen = SFColor(hex: 0x7CFC00)!
|
|
/// SwifterSwift: hex #FFFACD
|
public static let lemonChiffon = SFColor(hex: 0xFFFACD)!
|
|
/// SwifterSwift: hex #ADD8E6
|
public static let lightBlue = SFColor(hex: 0xADD8E6)!
|
|
/// SwifterSwift: hex #F08080
|
public static let lightCoral = SFColor(hex: 0xF08080)!
|
|
/// SwifterSwift: hex #E0FFFF
|
public static let lightCyan = SFColor(hex: 0xE0FFFF)!
|
|
/// SwifterSwift: hex #FAFAD2
|
public static let lightGoldenRodYellow = SFColor(hex: 0xFAFAD2)!
|
|
/// SwifterSwift: hex #D3D3D3
|
public static let lightGray = SFColor(hex: 0xD3D3D3)!
|
|
/// SwifterSwift: hex #D3D3D3
|
public static let lightGrey = SFColor(hex: 0xD3D3D3)!
|
|
/// SwifterSwift: hex #90EE90
|
public static let lightGreen = SFColor(hex: 0x90EE90)!
|
|
/// SwifterSwift: hex #FFB6C1
|
public static let lightPink = SFColor(hex: 0xFFB6C1)!
|
|
/// SwifterSwift: hex #FFA07A
|
public static let lightSalmon = SFColor(hex: 0xFFA07A)!
|
|
/// SwifterSwift: hex #20B2AA
|
public static let lightSeaGreen = SFColor(hex: 0x20B2AA)!
|
|
/// SwifterSwift: hex #87CEFA
|
public static let lightSkyBlue = SFColor(hex: 0x87CEFA)!
|
|
/// SwifterSwift: hex #778899
|
public static let lightSlateGray = SFColor(hex: 0x778899)!
|
|
/// SwifterSwift: hex #778899
|
public static let lightSlateGrey = SFColor(hex: 0x778899)!
|
|
/// SwifterSwift: hex #B0C4DE
|
public static let lightSteelBlue = SFColor(hex: 0xB0C4DE)!
|
|
/// SwifterSwift: hex #FFFFE0
|
public static let lightYellow = SFColor(hex: 0xFFFFE0)!
|
|
/// SwifterSwift: hex #00FF00
|
public static let lime = SFColor(hex: 0x00FF00)!
|
|
/// SwifterSwift: hex #32CD32
|
public static let limeGreen = SFColor(hex: 0x32CD32)!
|
|
/// SwifterSwift: hex #FAF0E6
|
public static let linen = SFColor(hex: 0xFAF0E6)!
|
|
/// SwifterSwift: hex #FF00FF
|
public static let magenta = SFColor(hex: 0xFF00FF)!
|
|
/// SwifterSwift: hex #800000
|
public static let maroon = SFColor(hex: 0x800000)!
|
|
/// SwifterSwift: hex #66CDAA
|
public static let mediumAquaMarine = SFColor(hex: 0x66CDAA)!
|
|
/// SwifterSwift: hex #0000CD
|
public static let mediumBlue = SFColor(hex: 0x0000CD)!
|
|
/// SwifterSwift: hex #BA55D3
|
public static let mediumOrchid = SFColor(hex: 0xBA55D3)!
|
|
/// SwifterSwift: hex #9370DB
|
public static let mediumPurple = SFColor(hex: 0x9370DB)!
|
|
/// SwifterSwift: hex #3CB371
|
public static let mediumSeaGreen = SFColor(hex: 0x3CB371)!
|
|
/// SwifterSwift: hex #7B68EE
|
public static let mediumSlateBlue = SFColor(hex: 0x7B68EE)!
|
|
/// SwifterSwift: hex #00FA9A
|
public static let mediumSpringGreen = SFColor(hex: 0x00FA9A)!
|
|
/// SwifterSwift: hex #48D1CC
|
public static let mediumTurquoise = SFColor(hex: 0x48D1CC)!
|
|
/// SwifterSwift: hex #C71585
|
public static let mediumVioletRed = SFColor(hex: 0xC71585)!
|
|
/// SwifterSwift: hex #191970
|
public static let midnightBlue = SFColor(hex: 0x191970)!
|
|
/// SwifterSwift: hex #F5FFFA
|
public static let mintCream = SFColor(hex: 0xF5FFFA)!
|
|
/// SwifterSwift: hex #FFE4E1
|
public static let mistyRose = SFColor(hex: 0xFFE4E1)!
|
|
/// SwifterSwift: hex #FFE4B5
|
public static let moccasin = SFColor(hex: 0xFFE4B5)!
|
|
/// SwifterSwift: hex #FFDEAD
|
public static let navajoWhite = SFColor(hex: 0xFFDEAD)!
|
|
/// SwifterSwift: hex #000080
|
public static let navy = SFColor(hex: 0x000080)!
|
|
/// SwifterSwift: hex #FDF5E6
|
public static let oldLace = SFColor(hex: 0xFDF5E6)!
|
|
/// SwifterSwift: hex #808000
|
public static let olive = SFColor(hex: 0x808000)!
|
|
/// SwifterSwift: hex #6B8E23
|
public static let oliveDrab = SFColor(hex: 0x6B8E23)!
|
|
/// SwifterSwift: hex #FFA500
|
public static let orange = SFColor(hex: 0xFFA500)!
|
|
/// SwifterSwift: hex #FF4500
|
public static let orangeRed = SFColor(hex: 0xFF4500)!
|
|
/// SwifterSwift: hex #DA70D6
|
public static let orchid = SFColor(hex: 0xDA70D6)!
|
|
/// SwifterSwift: hex #EEE8AA
|
public static let paleGoldenRod = SFColor(hex: 0xEEE8AA)!
|
|
/// SwifterSwift: hex #98FB98
|
public static let paleGreen = SFColor(hex: 0x98FB98)!
|
|
/// SwifterSwift: hex #AFEEEE
|
public static let paleTurquoise = SFColor(hex: 0xAFEEEE)!
|
|
/// SwifterSwift: hex #DB7093
|
public static let paleVioletRed = SFColor(hex: 0xDB7093)!
|
|
/// SwifterSwift: hex #FFEFD5
|
public static let papayaWhip = SFColor(hex: 0xFFEFD5)!
|
|
/// SwifterSwift: hex #FFDAB9
|
public static let peachPuff = SFColor(hex: 0xFFDAB9)!
|
|
/// SwifterSwift: hex #CD853F
|
public static let peru = SFColor(hex: 0xCD853F)!
|
|
/// SwifterSwift: hex #FFC0CB
|
public static let pink = SFColor(hex: 0xFFC0CB)!
|
|
/// SwifterSwift: hex #DDA0DD
|
public static let plum = SFColor(hex: 0xDDA0DD)!
|
|
/// SwifterSwift: hex #B0E0E6
|
public static let powderBlue = SFColor(hex: 0xB0E0E6)!
|
|
/// SwifterSwift: hex #800080
|
public static let purple = SFColor(hex: 0x800080)!
|
|
/// SwifterSwift: hex #663399
|
public static let rebeccaPurple = SFColor(hex: 0x663399)!
|
|
/// SwifterSwift: hex #FF0000
|
public static let red = SFColor(hex: 0xFF0000)!
|
|
/// SwifterSwift: hex #BC8F8F
|
public static let rosyBrown = SFColor(hex: 0xBC8F8F)!
|
|
/// SwifterSwift: hex #4169E1
|
public static let royalBlue = SFColor(hex: 0x4169E1)!
|
|
/// SwifterSwift: hex #8B4513
|
public static let saddleBrown = SFColor(hex: 0x8B4513)!
|
|
/// SwifterSwift: hex #FA8072
|
public static let salmon = SFColor(hex: 0xFA8072)!
|
|
/// SwifterSwift: hex #F4A460
|
public static let sandyBrown = SFColor(hex: 0xF4A460)!
|
|
/// SwifterSwift: hex #2E8B57
|
public static let seaGreen = SFColor(hex: 0x2E8B57)!
|
|
/// SwifterSwift: hex #FFF5EE
|
public static let seaShell = SFColor(hex: 0xFFF5EE)!
|
|
/// SwifterSwift: hex #A0522D
|
public static let sienna = SFColor(hex: 0xA0522D)!
|
|
/// SwifterSwift: hex #C0C0C0
|
public static let silver = SFColor(hex: 0xC0C0C0)!
|
|
/// SwifterSwift: hex #87CEEB
|
public static let skyBlue = SFColor(hex: 0x87CEEB)!
|
|
/// SwifterSwift: hex #6A5ACD
|
public static let slateBlue = SFColor(hex: 0x6A5ACD)!
|
|
/// SwifterSwift: hex #708090
|
public static let slateGray = SFColor(hex: 0x708090)!
|
|
/// SwifterSwift: hex #708090
|
public static let slateGrey = SFColor(hex: 0x708090)!
|
|
/// SwifterSwift: hex #FFFAFA
|
public static let snow = SFColor(hex: 0xFFFAFA)!
|
|
/// SwifterSwift: hex #00FF7F
|
public static let springGreen = SFColor(hex: 0x00FF7F)!
|
|
/// SwifterSwift: hex #4682B4
|
public static let steelBlue = SFColor(hex: 0x4682B4)!
|
|
/// SwifterSwift: hex #D2B48C
|
public static let tan = SFColor(hex: 0xD2B48C)!
|
|
/// SwifterSwift: hex #008080
|
public static let teal = SFColor(hex: 0x008080)!
|
|
/// SwifterSwift: hex #D8BFD8
|
public static let thistle = SFColor(hex: 0xD8BFD8)!
|
|
/// SwifterSwift: hex #FF6347
|
public static let tomato = SFColor(hex: 0xFF6347)!
|
|
/// SwifterSwift: hex #40E0D0
|
public static let turquoise = SFColor(hex: 0x40E0D0)!
|
|
/// SwifterSwift: hex #EE82EE
|
public static let violet = SFColor(hex: 0xEE82EE)!
|
|
/// SwifterSwift: hex #F5DEB3
|
public static let wheat = SFColor(hex: 0xF5DEB3)!
|
|
/// SwifterSwift: hex #FFFFFF
|
public static let white = SFColor(hex: 0xFFFFFF)!
|
|
/// SwifterSwift: hex #F5F5F5
|
public static let whiteSmoke = SFColor(hex: 0xF5F5F5)!
|
|
/// SwifterSwift: hex #FFFF00
|
public static let yellow = SFColor(hex: 0xFFFF00)!
|
|
/// SwifterSwift: hex #9ACD32
|
public static let yellowGreen = SFColor(hex: 0x9ACD32)!
|
}
|
}
|
|
// MARK: - Flat UI colors
|
|
public extension SFColor {
|
/// SwifterSwift: Flat UI colors
|
enum FlatUI {
|
// http://flatuicolors.com.
|
|
/// SwifterSwift: hex #1ABC9C
|
public static let turquoise = SFColor(hex: 0x1ABC9C)!
|
|
/// SwifterSwift: hex #16A085
|
public static let greenSea = SFColor(hex: 0x16A085)!
|
|
/// SwifterSwift: hex #2ECC71
|
public static let emerald = SFColor(hex: 0x2ECC71)!
|
|
/// SwifterSwift: hex #27AE60
|
public static let nephritis = SFColor(hex: 0x27AE60)!
|
|
/// SwifterSwift: hex #3498DB
|
public static let peterRiver = SFColor(hex: 0x3498DB)!
|
|
/// SwifterSwift: hex #2980B9
|
public static let belizeHole = SFColor(hex: 0x2980B9)!
|
|
/// SwifterSwift: hex #9B59B6
|
public static let amethyst = SFColor(hex: 0x9B59B6)!
|
|
/// SwifterSwift: hex #8E44AD
|
public static let wisteria = SFColor(hex: 0x8E44AD)!
|
|
/// SwifterSwift: hex #34495E
|
public static let wetAsphalt = SFColor(hex: 0x34495E)!
|
|
/// SwifterSwift: hex #2C3E50
|
public static let midnightBlue = SFColor(hex: 0x2C3E50)!
|
|
/// SwifterSwift: hex #F1C40F
|
public static let sunFlower = SFColor(hex: 0xF1C40F)!
|
|
/// SwifterSwift: hex #F39C12
|
public static let flatOrange = SFColor(hex: 0xF39C12)!
|
|
/// SwifterSwift: hex #E67E22
|
public static let carrot = SFColor(hex: 0xE67E22)!
|
|
/// SwifterSwift: hex #D35400
|
public static let pumpkin = SFColor(hex: 0xD35400)!
|
|
/// SwifterSwift: hex #E74C3C
|
public static let alizarin = SFColor(hex: 0xE74C3C)!
|
|
/// SwifterSwift: hex #C0392B
|
public static let pomegranate = SFColor(hex: 0xC0392B)!
|
|
/// SwifterSwift: hex #ECF0F1
|
public static let clouds = SFColor(hex: 0xECF0F1)!
|
|
/// SwifterSwift: hex #BDC3C7
|
public static let silver = SFColor(hex: 0xBDC3C7)!
|
|
/// SwifterSwift: hex #7F8C8D
|
public static let asbestos = SFColor(hex: 0x7F8C8D)!
|
|
/// SwifterSwift: hex #95A5A6
|
public static let concrete = SFColor(hex: 0x95A5A6)!
|
}
|
|
// swiftlint:enable type_body_length
|
}
|
#endif
|