Skip to content

Commit 2e7baa9

Browse files
committed
Style: New Property
1 parent b16e2d7 commit 2e7baa9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

WooCommerce/Classes/Styles/Style.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ protocol Style {
2020
var wooCommerceBrandColor: UIColor { get }
2121
var cellSeparatorColor: UIColor { get }
2222
var wooGreyMid: UIColor { get }
23+
var wooGreyTextMin: UIColor { get }
2324
}
2425

2526
// MARK: - WooCommerce's Default Style
@@ -41,6 +42,7 @@ class DefaultStyle: Style {
4142
let wooCommerceBrandColor = UIColor(red: 0x96/255.0, green: 0x58/255.0, blue: 0x8A/255.0, alpha: 0xFF/255.0)
4243
let cellSeparatorColor = UIColor.lightGray
4344
let wooGreyMid = UIColor(red: 150.0/255.0, green: 150.0/255.0, blue: 150.0/255.0, alpha: 1.0)
45+
let wooGreyTextMin = UIColor(red: 89.0/255.0, green: 89.0/255.0, blue: 89.0/255.0, alpha: 1.0)
4446
}
4547

4648

@@ -124,4 +126,8 @@ class StyleManager {
124126
static var wooGreyMid: UIColor {
125127
return active.wooGreyMid
126128
}
129+
130+
static var wooGreyTextMin: UIColor {
131+
return active.wooGreyTextMin
132+
}
127133
}

0 commit comments

Comments
 (0)