diff options
Diffstat (limited to 'Juick/ColorScheme.m')
-rw-r--r-- | Juick/ColorScheme.m | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Juick/ColorScheme.m b/Juick/ColorScheme.m new file mode 100644 index 0000000..257cc72 --- /dev/null +++ b/Juick/ColorScheme.m @@ -0,0 +1,36 @@ +// +// Colors.m +// Juick +// +// Created by Vitaly Takmazov on 05.11.13. +// Copyright (c) 2013 com.juick. All rights reserved. +// + +#import "ColorScheme.h" + +@implementation ColorScheme + ++ (void) initialize +{ + [super initialize]; +} + + ++ (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:51/255.0f green:51/255.0f blue:51/255.0f alpha:1.0f]; +} + ++ (UIColor *) navbarFont { + return [UIColor colorWithRed:153/255.0f green:154/255.0f blue:153/255.0f alpha:1.0f]; +} + + +@end |