blob: 27697f833ac13c7b02bce8035fd4c646e68c7958 (
plain)
1
2
3
4
5
6
7
8
9
|
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)
}
}
|