blob: 257cc72333ab9289a6a442576b2693be568183b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
|