blob: 3b850e0f011dc175df1f45351caa1c77eec1fb15 (
plain)
1
2
3
4
5
6
7
|
import SwiftUI
extension Color {
init(hex: Int, opacity: Double = 1.0) {
self.init(red: Double((hex >> 16) & 0xFF) / 255.0, green: Double((hex >> 8) & 0xFF) / 255.0, blue: Double(hex & 0xFF) / 255.0, opacity: opacity)
}
}
|