|
@@ -30,6 +30,7 @@ class NCBrandColor: NSObject {
|
|
|
return instance
|
|
|
}()
|
|
|
|
|
|
+ // Color
|
|
|
public var brand: UIColor = UIColor(red: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0) // BLU NC : #0082c9
|
|
|
public var connectionNo: UIColor = UIColor(red: 204.0/255.0, green: 204.0/255.0, blue: 204.0/255.0, alpha: 1.0)
|
|
|
public var cryptocloud: UIColor = UIColor(red: 241.0/255.0, green: 90.0/255.0, blue: 34.0/255.0, alpha: 1.0)
|
|
@@ -40,11 +41,15 @@ class NCBrandColor: NSObject {
|
|
|
public var menuBackground: UIColor = .white
|
|
|
public var moreNormal: UIColor = .black
|
|
|
public var moreSettings: UIColor = .black
|
|
|
- public var selectBackgrond: UIColor = UIColor(red: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
|
|
|
public var seperator: UIColor = UIColor(red: 235.0/255.0, green: 235.0/255.0, blue: 235.0/255.0, alpha: 1.0)
|
|
|
public var tabBar: UIColor = .white
|
|
|
public var tableBackground: UIColor = .white
|
|
|
public var transferBackground: UIColor = UIColor(red: 178.0/255.0, green: 244.0/255.0, blue: 258.0/255.0, alpha: 0.1)
|
|
|
+
|
|
|
+ // Color modify
|
|
|
+ public func getColorSelectBackgrond() -> UIColor {
|
|
|
+ return self.brand.withAlphaComponent(0.1)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
class NCBrandImages: NSObject {
|