1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // ColorDefine.h
- // Asteria
- //
- // Created by iOS on 2023/4/24.
- //
- #ifndef ColorDefine_h
- #define ColorDefine_h
- #define _F0FFFA ([UIColor colorWithHexString:@"#F0FFFA"])
- #define _FFF5F0 ([UIColor colorWithHexString:@"#FFF5F0"])
- #define _FFD1B9 ([UIColor colorWithHexString:@"#FFD1B9"])
- #define _414141 ([UIColor colorWithHexString:@"#414141"])
- #define _262626 ([UIColor colorWithHexString:@"#262626"])
- #define _0B0B0B ([UIColor colorWithHexString:@"#0B0B0B"])
- #define _E8E8E8 ([UIColor colorWithHexString:@"#E8E8E8"])
- #define _F8F8F8 ([UIColor colorWithHexString:@"#F8F8F8"])
- #define _F0F0F0 ([UIColor colorWithHexString:@"#F0F0F0"])
- #define _F4F4F4 ([UIColor colorWithHexString:@"#F4F4F4"])
- #define _1C1C1C ([UIColor colorWithHexString:@"#1C1C1C"])
- #define _6F4A4A ([UIColor colorWithHexString:@"#6F4A4A"])
- #define _80695D ([UIColor colorWithHexString:@"#80695D"])
- #define _FED1B9 ([UIColor colorWithHexString:@"#FED1B9"])
- #define _FFF8F9 ([UIColor colorWithHexString:@"#FFF8F9"])
- #define _FFDEE2 ([UIColor colorWithHexString:@"#FFDEE2"])
- #define _B39B9E ([UIColor colorWithHexString:@"#B39B9E"])
- #define _404040 ([UIColor colorWithHexString:@"#404040"])
- #define _113632 ([UIColor colorWithHexString:@"#113632"])
- #define _C8FFED ([UIColor colorWithHexString:@"#C8FFED"])
- #define _E5E5E5 ([UIColor colorWithHexString:@"#E5E5E5"])
- #define _F5F5F5 ([UIColor colorWithHexString:@"#F5F5F5"])
- #define _DBDBDB ([UIColor colorWithHexString:@"#DBDBDB"])
- #define _D0D0D0 ([UIColor colorWithHexString:@"#D0D0D0"])
- #define _0E0E0F ([UIColor colorWithHexString:@"#0E0E0F"])
- #define _043632 ([UIColor colorWithHexString:@"#043632"])
- #define _B1B1B1 ([UIColor colorWithHexString:@"#B1B1B1"])
- #define _E0FFF5 ([UIColor colorWithHexString:@"#E0FFF5"])
- #define _128273 ([UIColor colorWithHexString:@"#128273"])
- #define _1CBC9D ([UIColor colorWithHexString:@"#1CBC9D"])
- #define _FFE797 ([UIColor colorWithHexString:@"#FFE797"])
- // as主题色 绿色
- #define _32CFB0 ([UIColor colorWithHexString:@"#32CFB0"])
- #endif /* ColorDefine_h */
|