// // UIColor+MapsMeColor.h // Maps // // Created by v.mikhaylenko on 25.06.15. // Copyright (c) 2015 MapsWithMe. All rights reserved. // #import @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