소스 검색

comment on unthemed colors

cyberta 5 년 전
부모
커밋
0f4bd7bc27
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      deltachat-ios/Extensions/UIColor+Extensions.swift

+ 1 - 4
deltachat-ios/Extensions/UIColor+Extensions.swift

@@ -29,14 +29,11 @@ import UIKit
 
 internal extension UIColor {
 
+    // Defaults used in messageKit, not in active use
     static let incomingGray = UIColor(red: 230/255, green: 230/255, blue: 235/255, alpha: 1.0)
-
     static let outgoingGreen = UIColor(red: 69/255, green: 214/255, blue: 93/255, alpha: 1.0)
-
     static let inputBarGray = UIColor(red: 247/255, green: 247/255, blue: 247/255, alpha: 1.0)
-
     static let playButtonLightGray = UIColor(red: 230/255, green: 230/255, blue: 230/255, alpha: 1.0)
-
     static let sendButtonBlue = UIColor(red: 15/255, green: 135/255, blue: 255/255, alpha: 1.0)
 
     convenience init(alpha: Int, red: Int, green: Int, blue: Int) {