1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import UIKit
- class CCConstant: NSObject {
-
- struct GlobalConstants {
-
-
-
-
-
- static let kColor_Seperator: UIColor = UIColor(red: 53.0/255.0, green: 126.0/255.0, blue: 167.0/255.0, alpha: 1.0)
-
- static let kColor_cryptocloud: UIColor = UIColor(red: 241.0/255.0, green: 90.0/255.0, blue: 34.0/255.0, alpha: 1.0)
-
- static let kColor_NonCompliant: UIColor = UIColor(red: 190.0/255.0, green: 15.0/255.0, blue: 52.0/255.0, alpha: 1.0)
- static let kColor_Compliant: UIColor = UIColor(red: 87.0/255.0, green: 149.0/255.0, blue: 0.0/255.0, alpha: 1.0)
-
-
-
- static let kOrganizationFullName = "FullName"
- }
- }
|