18 lines
270 B
Objective-C
18 lines
270 B
Objective-C
//
|
|
// UIColor+Extension.h
|
|
// Monal
|
|
//
|
|
// Created by Thilo Molitor on 04.11.21.
|
|
// Copyright © 2021 Monal.im. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface UIColor (Extension)
|
|
-(BOOL) isLightColor;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|