123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- //
- // ColorDefine.h
- // PodDemo
- //
- // Created by Apple on 2019/12/24.
- // Copyright © 2019 Apple. All rights reserved.
- //
- #ifndef ColorDefine_h
- #define ColorDefine_h
- #import "UIColor+HZXColor.h"
- #define HW1D1E1FColor [UIColor hwColor:@"1D1E1F"]
- #define HW1C1C1EColor [UIColor hwColor:@"1C1C1E"]
- #define HW05BAFBColor [UIColor hwColor:@"#05BAFB"]
- #define HW333333Color9 [UIColor colorWithLightColor:[UIColor hwColor:@"333333"] DarkColor:[UIColor hwColor:@"333333"]]
- #define HW262626FColor [UIColor hwColor:@"262626"]
- #define HW101010FColor [UIColor hwColor:@"101010"]
- #define HWA5A5A5Color [UIColor hwColor:@"#A5A5A5"]
- #define HWFFFFFFColor [UIColor colorWithHexString:@"FFFFFF" alpha:1.0]
- #define HWFFFFFF80Color [UIColor colorWithHexString:@"FFFFFF" alpha:0.8]
- #define HWFFFFFF10Color [UIColor colorWithHexString:@"FFFFFF" alpha:0.1]
- #define HWFFFFFF08Color [UIColor colorWithHexString:@"FFFFFF" alpha:0.08]
- #define HWFFFFFFColor10 [UIColor colorWithHexString:@"#FFFFFF" alpha:0.1]
- #define HWFFFFFFColor60 [UIColor colorWithHexString:@"#FFFFFF" alpha:0.6]
- #define HW979797Color10 [UIColor colorWithHexString:@"#979797" alpha:0.1]
- #define HW000000Color60 [UIColor colorWithHexString:@"#000000" alpha:0.6]
- #define HW0A132BColor00 [UIColor colorWithHexString:@"#0A132B" alpha:0]
- #define HW182B56Color [UIColor colorWithHexString:@"#182B56" alpha:1]
- #define HWF5F7FAColor [UIColor hwColor:@"#F5F7FA"]
- #define HWF7F7F7Color [UIColor hwColor:@"#F7F7F7"]
- #define HW333333Color [UIColor hwColor:@"#333333"]
- #define HW666666Color [UIColor hwColor:@"#666666"]
- #define HWE3E8F1Color [UIColor hwColor:@"#E3E8F1"]
- #define HW13B2EBColor [UIColor hwColor:@"#13B2EB"]
- #define HW0CDEFDColor [UIColor hwColor:@"#0CDEFD"]
- #define HW058DFBColor [UIColor hwColor:@"#058DFB"]
- #define HWEFA23BColor [UIColor hwColor:@"#EFA23B"]
- #define HWCCCCCCColor [UIColor hwColor:@"#CCCCCC"]
- #define HW2C2C2DColor [UIColor hwColor:@"#2C2C2D"]
- #define HWE7F2F8Color [UIColor hwColor:@"#E7F2F8"]
- #define HWFBFCFDColor [UIColor hwColor:@"#FBFCFD"]
- #define HW01B7EAColor [UIColor hwColor:@"#01B7EA"]
- #define HW02DCF6Color [UIColor hwColor:@"#02DCF6"]
- #define HW0458E3Color [UIColor hwColor:@"#0458E3"]
- #define HW2F3972Color [UIColor hwColor:@"#2F3972"]
- #define HW111111Color [UIColor hwColor:@"#111111"]
- #define HWECECECColor [UIColor hwColor:@"#ECECEC"]
- #define HW9D9D9DColor [UIColor hwColor:@"#9D9D9D"]
- #define COLOR_DISABLE_BTN RGBACOLOR(0x08,0x86,0xF5,0.3)
- #define COLOR_ENABLE_BTN RGBACOLOR(36,99,251,1)
- #define HW999999Color [UIColor hwColor:@"999999"]
- #define HW3B7FFFColor [UIColor hwColor:@"#3B7FFF"]
- #define HW0A132BColor [UIColor hwColor:@"#0A132B"]
- #define COLOR_GRAVBBBBBB RGBACOLOR(0xBB,0xBB,0xBB,1.f)
- #define COLOR_PACEHOLDER [UIColor hwColor:@"#999999"]
- #define COLOR_HEIGHT_BTN [UIColor hwColor:@"#13B2EB"]
- #define COLOR_UNABLE_TITLE_BTN [UIColor hwColor:@"#999999"]
- #define HWDD4E4EColor [UIColor hwColor:@"#DD4E4E"]
- #define HWC1C9D6Color [UIColor hwColor:@"#C1C9D6"]
- #define HWCFD1D4Color [UIColor hwColor:@"#CFD1D4"]
- #endif /* ColorDefine_h */
|