123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import UIKit
- class CCConstant: NSObject {
-
- struct GlobalConstants {
-
-
-
- static let k_Color_Seperator: UIColor = UIColor(red: 53.0/255.0, green: 126.0/255.0, blue: 167.0/255.0, alpha: 1.0)
-
- static let k_Color_Cryptocloud: UIColor = UIColor(red: 241.0/255.0, green: 90.0/255.0, blue: 34.0/255.0, alpha: 1.0)
-
- static let k_Color_SelectBackgrond: UIColor = UIColor(red: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
-
-
-
- static let kOrganizationFullName = "FullName"
- }
- }
|