Skip to content

Commit

Permalink
feat: hex기반 색상 추가 Extension 추가 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoSelf1 committed Oct 15, 2024
1 parent 27eb54f commit 2bce97d
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions Ddom/Extensions/Color+.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
//
// Color+.swift
// Ddom
//
// Created by 김 형석 on 10/15/24.
//

import Foundation
import SwiftUI

extension Color {
init(hex: String) {
let hex = hex.trimmingCharacters(in: CharacterSet.alphanumerics.inverted)
var int: UInt64 = 0
Scanner(string: hex).scanHexInt64(&int)
let a, r, g, b: UInt64
switch hex.count {
case 3: // RGB (12-bit)
(a, r, g, b) = (255, (int >> 8) * 17, (int >> 4 & 0xF) * 17, (int & 0xF) * 17)
case 6: // RGB (24-bit)
(a, r, g, b) = (255, int >> 16, int >> 8 & 0xFF, int & 0xFF)
case 8: // ARGB (32-bit)
(a, r, g, b) = (int >> 24, int >> 16 & 0xFF, int >> 8 & 0xFF, int & 0xFF)
default:
(a, r, g, b) = (1, 1, 1, 0)
}

self.init(
.sRGB,
red: Double(r) / 255,
green: Double(g) / 255,
blue: Double(b) / 255,
opacity: Double(a) / 255
)
}
}

0 comments on commit 2bce97d

Please sign in to comment.