diff options
Diffstat (limited to 'Juick/Colors.m')
-rw-r--r-- | Juick/Colors.m | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Juick/Colors.m b/Juick/Colors.m new file mode 100644 index 0000000..1a64e3d --- /dev/null +++ b/Juick/Colors.m @@ -0,0 +1,29 @@ +// +// Colors.m +// Juick +// +// Created by Vitaly Takmazov on 05.11.13. +// Copyright (c) 2013 com.juick. All rights reserved. +// + +#import "Colors.h" + +@implementation Colors + ++ (UIColor *) mainBackground { + return [UIColor colorWithRed:238/255.0f green:238/255.0f blue:229/255.0f alpha:1.0f]; +} + ++ (UIColor *) linkColor { + return [UIColor colorWithRed:0/255.0f green:102/255.0f blue:153/255.0f alpha:1.0f]; +} + ++ (UIColor *) navbarBackground { + return [UIColor colorWithRed:44/255.0f green:44/255.0f blue:44/255.0f alpha:1]; +} + ++ (UIColor *) navbarFont { + return [UIColor colorWithRed:153/255.0f green:154/255.0f blue:153/255.0f alpha:1]; +} + +@end |