Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UIColor+MapsMeColor.h « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd47a2fe15ce7009d828e86fa5a2e511af207796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
//  UIColor+MapsMeColor.h
//  Maps
//
//  Created by v.mikhaylenko on 25.06.15.
//  Copyright (c) 2015 MapsWithMe. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface UIColor (MapsMeColor)

+ (UIColor *)primaryDark;
+ (UIColor *)primary;
+ (UIColor *)primaryLight;
+ (UIColor *)fadeBackground;
+ (UIColor *)pressBackground;
+ (UIColor *)red;
+ (UIColor *)orange;
+ (UIColor *)linkBlue;
+ (UIColor *)blackPrimaryText;
+ (UIColor *)blackSecondaryText;
+ (UIColor *)blackHintText;
+ (UIColor *)blackDividers;
+ (UIColor *)whitePrimaryText;
+ (UIColor *)whiteSecondaryText;
+ (UIColor *)whiteHintText;
+ (UIColor *)whiteDividers;

+ (UIColor *)colorWithName:(NSString *)colorName;

@end