7 lines
180 B
Swift
7 lines
180 B
Swift
import SwiftColor
|
|
|
|
public extension Pigment {
|
|
var coreGraphicsDescription: String {
|
|
"CGColor(srgbRed: \(red), green: \(green), blue: \(blue), alpha: \(alpha))"
|
|
}
|
|
}
|