// // Utilities.h // Flickrgram // // Created by Hannah Troisi on 3/9/16. // Copyright © 2016 Hannah Troisi. All rights reserved. // #import #import @interface UIColor (Additions) + (UIColor *)darkBlueColor; + (UIColor *)lightBlueColor; + (UIColor *)duskColor; + (UIColor *)customOrangeColor; @end @interface UIImage (Additions) - (UIImage *)makeCircularImageWithSize:(CGSize)size withBorderWidth:(CGFloat)width; @end @interface NSAttributedString (Additions) + (NSAttributedString *)attributedStringWithString:(NSString *)string fontSize:(CGFloat)size color:(UIColor *)color firstWordColor:(UIColor *)firstWordColor; @end