Browse Source

fix title font color of TextFieldCell

cyberta 5 years ago
parent
commit
f1b08172c2
1 changed files with 2 additions and 1 deletions
  1. 2 1
      deltachat-ios/View/TextFieldCell.swift

+ 2 - 1
deltachat-ios/View/TextFieldCell.swift

@@ -1,4 +1,5 @@
 import UIKit
+import DcCore
 
 class TextFieldCell: UITableViewCell {
 
@@ -38,7 +39,7 @@ class TextFieldCell: UITableViewCell {
         let label = UILabel()
         label.font = .preferredFont(forTextStyle: .body)
         label.adjustsFontForContentSizeCategory = true
-        label.textColor = .darkGray
+        label.textColor = DcColors.defaultTextColor
         label.lineBreakMode = .byTruncatingTail
         label.translatesAutoresizingMaskIntoConstraints = false
         return label