1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // TSColorConfig.swift
- // Pods
- //
- // Created by fff on 2025/2/7.
- //
- public let TSColorConfigShared = TSColorConfig.shared
- open class TSColorConfig {
- static var shared = TSColorConfig()
- /// 背景色
- public var mainBg:UIColor = "#111111".uiColor
- /// 主色调
- public var themeColor = "#FF54C6".uiColor
-
- public var naviMianTextColor = "#0E1550".uiColor
- public var naviMianBgColor = UIColor.clear
-
- public var mainDisable = UIColor.clear
-
- /// 分割线
- public var sepaLine = UIColor.clear
-
- /// 主要文字
- public var mainText = UIColor.white
-
- /// 次要文字
- public var lesserText = UIColor.fromHex("#FFFFFF", alpha: 0.6)
-
- /// 弱文字
- public var textDisable = "#010101".toColor()!
-
- /// 辅助文字
- public var textAssist = UIColor.fromHex("#FFFFFF", alpha: 0.4)
-
- /// 成功
- public var success = UIColor.clear
-
- /// 辅助色
- public var assist = "#111111".uiColor
-
- /// 按钮色
- public var button = UIColor.clear
-
- /// 警示色
- public var alert = UIColor.clear
-
- /// 主色调
- public var mainGlowing = "#D553FA".toColor()!
- public var mainLightGlowing = "#FE01AA".toColor()!
-
- /// 辅助 - 蓝色
- public var assistBlue = UIColor.clear
-
- }
|