Explorar o código

fix title font color of TextFieldCell

cyberta %!s(int64=5) %!d(string=hai) anos
pai
achega
f1b08172c2
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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