Color - SwiftDocOrg/GraphViz GitHub Wiki

Color

public indirect enum Color

Inheritance

ExpressibleByStringLiteral, Hashable

Initializers

init(stringLiteral:)

public init(stringLiteral value: String)

Enumeration Cases

transparent

case transparent

named

case named(: Name)

rgb

case rgb(red: UInt8, green: UInt8, blue: UInt8)

rgba

case rgba(red: UInt8, green: UInt8, blue: UInt8, alpha: UInt8)

hsv

case hsv(hue: Double, saturation: Double, value: Double)

custom

case custom(: String)