22 lines
408 B
Swift
22 lines
408 B
Swift
/**
|
|
* Splash
|
|
* Copyright (c) John Sundell 2018
|
|
* MIT license - see LICENSE.md
|
|
*/
|
|
|
|
#if os(iOS)
|
|
import UIKit
|
|
public typealias Color = UIColor
|
|
#elseif os(macOS)
|
|
import Cocoa
|
|
public typealias Color = NSColor
|
|
#endif
|
|
|
|
#if !os(Linux)
|
|
internal extension Color {
|
|
convenience init(red: CGFloat, green: CGFloat, blue: CGFloat) {
|
|
self.init(red: red, green: green, blue: blue, alpha: 1)
|
|
}
|
|
}
|
|
#endif
|