mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
43 lines
698 B
Objective-C
43 lines
698 B
Objective-C
#import "TGCameraInterfaceAssets.h"
|
|
|
|
#import "LegacyComponentsInternal.h"
|
|
|
|
@implementation TGCameraInterfaceAssets
|
|
|
|
+ (UIColor *)normalColor
|
|
{
|
|
return [UIColor whiteColor];
|
|
}
|
|
|
|
+ (UIColor *)accentColor
|
|
{
|
|
return UIColorRGB(0xffcc00);
|
|
}
|
|
|
|
+ (UIColor *)redColor
|
|
{
|
|
return UIColorRGB(0xf53333);
|
|
}
|
|
|
|
+ (UIColor *)panelBackgroundColor
|
|
{
|
|
return [UIColor blackColor];
|
|
}
|
|
|
|
+ (UIColor *)transparentPanelBackgroundColor
|
|
{
|
|
return [UIColor colorWithWhite:0.0f alpha:0.5];
|
|
}
|
|
|
|
+ (UIColor *)transparentOverlayBackgroundColor
|
|
{
|
|
return [UIColor colorWithWhite:0.0f alpha:0.7];
|
|
}
|
|
|
|
+ (UIFont *)normalFontOfSize:(CGFloat)size
|
|
{
|
|
return [UIFont fontWithName:@"DINAlternate-Bold" size:size];
|
|
}
|
|
|
|
@end
|