mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 06:14:59 +00:00
23 lines
850 B
Swift
23 lines
850 B
Swift
// Copyright © 2020 Australian Government All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
extension UIColor {
|
|
static let covidHomeActiveColor = UIColor(0xC8FFB9)
|
|
static let covidHomePermissionErrorColor = UIColor(0xE2E2E2)
|
|
static let covidSafeColor = UIColor(0x00661B)
|
|
static let covidSafeLighterColor = UIColor(0x008A23)
|
|
static let covidSafeButtonDarkerColor = UIColor(0x00661B)
|
|
static let covidSafeErrorColor = UIColor(0xA31919)
|
|
|
|
var asSolidBackgroundImage: UIImage {
|
|
let rect = CGRect(x: 0, y: 0, width: 20, height: 20)
|
|
UIGraphicsBeginImageContext(rect.size)
|
|
let context = UIGraphicsGetCurrentContext()
|
|
context!.setFillColor(self.cgColor)
|
|
context!.fill(rect)
|
|
let img = UIGraphicsGetImageFromCurrentImageContext()
|
|
UIGraphicsEndImageContext()
|
|
return img!
|
|
}
|
|
}
|