Manos Chorianopoulos

My Rewards revert color fixes

...@@ -32,10 +32,10 @@ import UIKit ...@@ -32,10 +32,10 @@ import UIKit
32 badgeView.layer.cornerRadius = 16.0 32 badgeView.layer.cornerRadius = 16.0
33 33
34 badgeCountView.layer.cornerRadius = 4.0 34 badgeCountView.layer.cornerRadius = 4.0
35 -// badgeCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00) 35 + badgeCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
36 - badgeCountView.backgroundColor = UIColor(rgb: 0xE20074) 36 + // badgeCountView.backgroundColor = UIColor(rgb: 0xE20074)
37 37
38 - badgeCountLabel.textColor = .white 38 + // badgeCountLabel.textColor = .white
39 } 39 }
40 40
41 func configureCell(badgeId: String, badgeCount: Int) { 41 func configureCell(badgeId: String, badgeCount: Int) {
......
...@@ -39,12 +39,14 @@ import SwiftEventBus ...@@ -39,12 +39,14 @@ import SwiftEventBus
39 dotLeftWidth.constant = 12 39 dotLeftWidth.constant = 12
40 dotLeftHeight.constant = 12 40 dotLeftHeight.constant = 12
41 dotLeft.layer.cornerRadius = 6 41 dotLeft.layer.cornerRadius = 6
42 - dotLeft.backgroundColor = UIColor(rgb: 0xE20074) 42 + dotLeft.backgroundColor = UIColor(rgb: 0x00A5E3)
43 + // dotLeft.backgroundColor = UIColor(rgb: 0xE20074)
43 44
44 dotRightWidth.constant = 8 45 dotRightWidth.constant = 8
45 dotRightHeight.constant = 8 46 dotRightHeight.constant = 8
46 dotRight.layer.cornerRadius = 4 47 dotRight.layer.cornerRadius = 4
47 - dotRight.backgroundColor = UIColor(rgb: 0x767676) 48 + dotRight.backgroundColor = UIColor(rgb: 0x00A5E3)
49 + // dotRight.backgroundColor = UIColor(rgb: 0x767676)
48 50
49 } 51 }
50 52
...@@ -115,23 +117,23 @@ extension WalletActiveCouponsScrollTableViewCell: UIScrollViewDelegate { ...@@ -115,23 +117,23 @@ extension WalletActiveCouponsScrollTableViewCell: UIScrollViewDelegate {
115 dotLeftWidth.constant = 8 117 dotLeftWidth.constant = 8
116 dotLeftHeight.constant = 8 118 dotLeftHeight.constant = 8
117 dotLeft.layer.cornerRadius = 4 119 dotLeft.layer.cornerRadius = 4
118 - dotLeft.backgroundColor = UIColor(rgb: 0x767676) 120 + // dotLeft.backgroundColor = UIColor(rgb: 0x767676)
119 121
120 dotRightWidth.constant = 12 122 dotRightWidth.constant = 12
121 dotRightHeight.constant = 12 123 dotRightHeight.constant = 12
122 dotRight.layer.cornerRadius = 6 124 dotRight.layer.cornerRadius = 6
123 - dotRight.backgroundColor = UIColor(rgb: 0xE20074) 125 + // dotRight.backgroundColor = UIColor(rgb: 0xE20074)
124 126
125 } else { 127 } else {
126 dotLeftWidth.constant = 12 128 dotLeftWidth.constant = 12
127 dotLeftHeight.constant = 12 129 dotLeftHeight.constant = 12
128 dotLeft.layer.cornerRadius = 6 130 dotLeft.layer.cornerRadius = 6
129 - dotLeft.backgroundColor = UIColor(rgb: 0xE20074) 131 + // dotLeft.backgroundColor = UIColor(rgb: 0xE20074)
130 132
131 dotRightWidth.constant = 8 133 dotRightWidth.constant = 8
132 dotRightHeight.constant = 8 134 dotRightHeight.constant = 8
133 dotRight.layer.cornerRadius = 4 135 dotRight.layer.cornerRadius = 4
134 - dotRight.backgroundColor = UIColor(rgb: 0x767676) 136 + // dotRight.backgroundColor = UIColor(rgb: 0x767676)
135 } 137 }
136 138
137 } 139 }
......
...@@ -41,8 +41,8 @@ import UIKit ...@@ -41,8 +41,8 @@ import UIKit
41 // voucherBannerLabel.text = "Ενημερώσου για το υπόλοιπο επιδότησης" 41 // voucherBannerLabel.text = "Ενημερώσου για το υπόλοιπο επιδότησης"
42 42
43 voucherCountView.layer.cornerRadius = 4.0 43 voucherCountView.layer.cornerRadius = 4.0
44 -// voucherCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00) 44 + voucherCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
45 - voucherCountView.backgroundColor = UIColor(rgb: 0xE20074) 45 + // voucherCountView.backgroundColor = UIColor(rgb: 0xE20074)
46 } 46 }
47 47
48 public override func setSelected(_ selected: Bool, animated: Bool) { 48 public override func setSelected(_ selected: Bool, animated: Bool) {
......