Browse Source

修改主题色

jsonwang 3 năm trước cách đây
mục cha
commit
af10d2d022

+ 1 - 1
Introduce/Record/INIntroduceController.swift

@@ -52,7 +52,7 @@ class INIntroduceController: BFBaseViewController {
         navHeadImageView?.backgroundColor = .clear
         leftButton(image: nil, imageName: nil, tintColor: .white)
 
-        exportBtn.backgroundColor = UIColor.hexColor(hexadecimal: "#28BE67")
+        exportBtn.backgroundColor = UIColor.hexColor(hexadecimal: "#389AFF")
         exportBtn.setTitle("导出", for: .normal)
         exportBtn.addCorner(corner: 4)
         exportBtn.titleLabel?.font = UIFont.systemFont(ofSize: 16)

+ 1 - 1
Introduce/Record/INPhotoVideosController.swift

@@ -151,7 +151,7 @@ class INPhotoVideosController: BFBaseViewController {
 
         let nextBtn = UIButton(type: .custom)
         nextBtn.frame = CGRect(x: cScreenWidth - 80, y: 10, width: 70, height: 29)
-        nextBtn.backgroundColor = UIColor.hexColor(hexadecimal: "#28BE67")
+        nextBtn.backgroundColor = UIColor.hexColor(hexadecimal: "#389AFF")
         nextBtn.setTitle("下一步", for: .normal)
         nextBtn.titleLabel?.font = UIFont.systemFont(ofSize: 12)
         nextBtn.layer.cornerRadius = 4

+ 1 - 1
Introduce/Record/INRecorderController.swift

@@ -76,7 +76,7 @@ class INRecorderController: BFBaseViewController {
     
     lazy var doneBtn:UIButton = {
         let doneBtn = UIButton()
-        doneBtn.backgroundColor = UIColor.hexColor(hexadecimal: "#28BE67")
+        doneBtn.backgroundColor = UIColor.hexColor(hexadecimal: "#389AFF")
         doneBtn.setTitle("同意", for: .normal)
         doneBtn.titleLabel?.font = UIFont.systemFont(ofSize: 16)
         doneBtn.addTarget(self, action: #selector(doneAction), for: .touchUpInside)