1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import UIKit
- class Constant: NSObject {
-
- struct GlobalConstants {
-
-
-
- static let k_Color_Seperator: UIColor = UIColor(red: 235.0/255.0, green: 235.0/255.0, blue: 235.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 k_Color_NavigationBar: UIColor = UIColor(red: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0)
-
- static let k_Color_NavigationBar_Text: UIColor = UIColor.white
-
-
-
- static let kOrganizationFullName = "FullName"
- }
- }
|