O2Color.swift 374 B

12345678910111213141516171819
  1. //
  2. // O2Color.swift
  3. // O2Platform
  4. //
  5. // Created by FancyLou on 2018/7/25.
  6. // Copyright © 2018 zoneland. All rights reserved.
  7. //
  8. import Foundation
  9. struct O2Color {
  10. // style
  11. static let primaryColor = UIColor(hex: "#FB4747")
  12. // text
  13. static let textHintColor = UIColor(hex: "#CCCCCC")
  14. static let textPrimaryColor = UIColor(hex: "#666666")
  15. }