mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 08:59:48 +01:00
20 lines
346 B
Objective-C
20 lines
346 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
UIColor *TGAccentColor();
|
|
UIColor *TGDestructiveAccentColor();
|
|
UIColor *TGSelectionColor();
|
|
UIColor *TGSeparatorColor();
|
|
|
|
UIColor *TGColorWithHex(int hex);
|
|
UIColor *TGColorWithHexAndAlpha(int hex, CGFloat alpha);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|