// // 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]; } // takes 0x123456 + (UIColor *)colorWithHex:(UInt32)col { unsigned char r, g, b; b = col & 0xFF; g = (col >> 8) & 0xFF; r = (col >> 16) & 0xFF; return [UIColor colorWithRed:(float)r/255.0f green:(float)g/255.0f blue:(float)b/255.0f alpha:1]; } + (UIColor *) headerBackground { return [self colorWithHex:0xffffff]; } + (UIColor *) mainBackground { return [self colorWithHex:0xf8f8f8]; } + (UIColor *) textColor { return [self colorWithHex:0x222222]; } + (UIColor *) linkColor { return [self colorWithHex:0x006699]; } + (UIColor *) secondaryBackground { return [self colorWithHex:0xff339a]; } @end