Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. //  Color.m
  3. //  Rover
  4. //
  5. //  Created by Satraj Bambra on 2015-06-04.
  6. //  Copyright (c) 2015 Rover Parking Inc. All rights reserved.
  7. //
  8.  
  9. #import "Color.h"
  10.  
  11. @implementation Color
  12.  
  13. + (UIColor *)primaryColorDarkBlue {
  14.     return [UIColor colorWithRed:37.0/255.0 green:41.0/255.0 blue:51.0/255.0 alpha:1.0];
  15. }
  16.  
  17. + (UIColor *)primaryColorBlue {
  18.     return [UIColor colorWithRed:47.0/255.0 green:53.0/255.0 blue:67.0/255.0 alpha:1.0];
  19. }
  20.  
  21. + (UIColor *)primaryColorAccent {
  22.     return [UIColor colorWithRed:235.0/255.0 green:107.0/255.0 blue:104.0/255.0 alpha:1.0];
  23. }
  24.  
  25. + (UIColor *)secondaryColorAccent {
  26.     return [UIColor colorWithRed:184.0/255.0 green:233.0/255.0 blue:134.0/255.0 alpha:1.0];
  27. }
  28.  
  29. + (UIColor *)secondaryColorNegative {
  30.     return [UIColor colorWithRed:123.0/255.0 green:131.0/255.0 blue:149.0/255.0 alpha:1.0];
  31. }
  32.  
  33. + (UIColor *)navBarTextColor {
  34.     return [UIColor colorWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:1.0];
  35. }
  36.  
  37. + (UIColor *)floatEditTextColor {
  38.     return [UIColor colorWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:0.8];
  39. }
  40.  
  41. + (UIColor *)placeHolderColor {
  42.     return [UIColor colorWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:0.5];
  43. }
  44.  
  45. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement