Skip to content

Commit

Permalink
#171: Color popupBackground 프로퍼티 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-muuu committed Mar 4, 2023
1 parent d75587a commit 4030c47
Showing 1 changed file with 19 additions and 46 deletions.
65 changes: 19 additions & 46 deletions Zatch/Global/Resource/DesignSystem/Color.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,62 +9,35 @@ import UIKit

extension UIColor{

static let transparent = UIColor(red: 0/255, green: 0/255, blue: 0/255, alpha: 0)

//MARK: - Purple
static let purple40 = UIColor(red: 216/255, green: 203/255, blue: 255/255, alpha: 1)

static let zatchPurple = UIColor(red: 158/255,
green: 124/255,
blue: 254/255,
alpha: 1)
static let zatchPurple = UIColor(red: 158/255, green: 124/255, blue: 254/255, alpha: 1)

//MARK: - Yellow
static let yellow40 = UIColor(red: 255/255, green: 242/255, blue: 225/255, alpha: 1)

static let yellow40 = UIColor(red: 255/255,
green: 242/255,
blue: 225/255,
alpha: 1)
static let zatchYellow = UIColor(red: 255/255, green: 189/255, blue: 107/255, alpha: 1)

static let zatchYellow = UIColor(red: 255/255,
green: 189/255,
blue: 107/255,
alpha: 1)
static let zatchDeepYellow = UIColor(red: 255/255, green: 171/255, blue: 66/255, alpha: 1)

static let zatchDeepYellow = UIColor(red: 255/255,
green: 171/255,
blue: 66/255,
alpha: 1)
//MARK: - Black
static let black5 = UIColor(red: 242/255, green: 242/255, blue: 242/255,alpha: 1)

static let black5 = UIColor(red: 242/255,
green: 242/255,
blue: 242/255,
alpha: 1)
static let black10 = UIColor(red: 229/255, green: 229/255, blue: 229/255, alpha: 1)

static let black10 = UIColor(red: 229/255,
green: 229/255,
blue: 229/255,
alpha: 1)
static let black20 = UIColor(red: 204/255, green: 204/255, blue: 204/255, alpha: 1)

static let black20 = UIColor(red: 204/255,
green: 204/255,
blue: 204/255,
alpha: 1)
static let black30 = UIColor(red: 179/255, green: 179/255, blue: 179/255, alpha: 1)

static let black30 = UIColor(red: 179/255,
green: 179/255,
blue: 179/255,
alpha: 1)
static let black45 = UIColor(red: 140/255, green: 140/255, blue: 140/255, alpha: 1)

static let black45 = UIColor(red: 140/255,
green: 140/255,
blue: 140/255,
alpha: 1)
static let black65 = UIColor(red: 89/255, green: 89/255, blue: 89/255, alpha: 1)

static let black65 = UIColor(red: 89/255,
green: 89/255,
blue: 89/255,
alpha: 1)
static let black85 = UIColor(red: 38/255, green: 38/255, blue: 38/255, alpha: 1)

//MARK: - Etc
static let transparent = UIColor(red: 0/255, green: 0/255, blue: 0/255, alpha: 0)

static let black85 = UIColor(red: 38/255,
green: 38/255,
blue: 38/255,
alpha: 1)
static let popupBackgroundColor = UIColor(red: 38/255, green: 38/255, blue: 38/255, alpha: 0.6)
}

0 comments on commit 4030c47

Please sign in to comment.