调整配色

This commit is contained in:
Fin 2021-09-07 12:40:46 +08:00
parent dccd921b18
commit b77d08a9dc

View File

@ -17,14 +17,14 @@ class PreviewCardCell: BaseTableViewCell {
let titleLabel: UILabel = {
let label = UILabel()
label.font = RobotoFont.regular(with: 14)
label.textColor = Color.grey.darken1
label.textColor = Color.grey.darken3
label.numberOfLines = 0
return label
}()
let bodyLabel: UILabel = {
let label = UILabel()
label.font = RobotoFont.regular(with: 14)
label.textColor = Color.grey.base
label.textColor = Color.grey.darken2
label.numberOfLines = 0
return label
}()