summaryrefslogtreecommitdiff
path: root/Juick/ColorScheme.m
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/ColorScheme.m')
-rw-r--r--Juick/ColorScheme.m19
1 files changed, 10 insertions, 9 deletions
diff --git a/Juick/ColorScheme.m b/Juick/ColorScheme.m
index 257cc72..8417489 100644
--- a/Juick/ColorScheme.m
+++ b/Juick/ColorScheme.m
@@ -15,21 +15,22 @@
[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 *) 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];
+ return [self colorWithHex:0x006699];
}