12345678910111213141516171819202122232425262728 |
- //
- // Extension.swift
- // fiveConstant
- //
- // Created by 李建 on 2023/1/31.
- //
- import Foundation
- import SwiftUI
- extension Color {
- init(hex: Int, alpha: Double = 1) {
- let components = (
- R: Double((hex >> 16) & 0xff) / 255,
- G: Double((hex >> 08) & 0xff) / 255,
- B: Double((hex >> 00) & 0xff) / 255
- )
- self.init(
- .sRGB,
- red: components.R,
- green: components.G,
- blue: components.B,
- opacity: alpha
- )
- }
- }
|