25 lines
346 B
Objective-C
25 lines
346 B
Objective-C
//
|
|
// AWP_Color.h
|
|
// HD wallpaper
|
|
//
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
// UIColor+CustomColors.h
|
|
|
|
|
|
|
|
@interface UIColor (CustomColors)
|
|
|
|
+ (UIColor *)customRedColor;
|
|
+ (UIColor *)customGreenColor;
|
|
+ (UIColor *)customBlueColor;
|
|
+ (UIColor *)colorWithHex:(UInt32)hex;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|