diff options
author | Vitaly Takmazov | 2013-12-18 05:53:29 +0400 |
---|---|---|
committer | Vitaly Takmazov | 2013-12-18 05:53:29 +0400 |
commit | ce630eef61d4acd8f5c4e1d6a3a60780c5ec4af3 (patch) | |
tree | 7b3364a9e343ec728d7e4886c61c89330b096986 /Juick/ColorScheme.m | |
parent | a4d2e426a36111a2da3683025ab129ef701d5a3f (diff) |
cleanup and ios6 fixes
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 |