-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSKEColors.m
More file actions
65 lines (47 loc) · 2.07 KB
/
SKEColors.m
File metadata and controls
65 lines (47 loc) · 2.07 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//
// SKEColors.m
// Demo
//
// Created by Carolina Franco on 11/3/18.
// Copyright © 2018 Carolina Franco. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SKEColors.h"
@implementation SKEColors
// Generals
+(UIColor *)backgroundCustomColor
{ return [[UIColor alloc] initWithRed:247.0 / 255.0 green:247.0 / 255.0 blue:247.0 / 255.0 alpha:1.0]; }
+(UIColor *)amountsColor
{ return [[UIColor alloc] initWithRed:230.0 / 255.0 green:0.0 / 255.0 blue:0.0 / 255.0 alpha:0.7]; }
+(UIColor *)activityColor
{ return [[UIColor alloc] initWithRed:230.0 / 255.0 green:0.0 / 255.0 blue:0.0 / 255.0 alpha:1.0]; }
+(UIColor *)genaralTitlesColor
{ return [[UIColor alloc] initWithRed:111.0 / 255.0 green:113.0 / 255.0 blue:121.0 / 255.0 alpha:1.0]; }
// Buttons
+(UIColor *)btnActiveBackgroundColor
{ return [[UIColor alloc] initWithRed:230.0 / 255.0 green:0.0 / 255.0 blue:0.0 / 255.0 alpha:1.0]; }
+(UIColor *)btnActiveFontColor
{ return [[UIColor alloc] initWithRed:255.0 / 255.0 green:255.0 / 255.0 blue:255.0 / 255.0 alpha:1.0]; }
+(UIColor *)customButtonsTintColor
{ return nil; }
+(UIColor *)customKeyboardTintColor
{ return nil; }
// Labels
+(UIColor *)lblTitleColor
{ return [[UIColor alloc] initWithRed:230.0 / 255.0 green:0.0 / 255.0 blue:0.0 / 255.0 alpha:1.0]; }
+(UIColor *)lblNormalColor
{ return [[UIColor alloc] initWithRed:111.0 / 255.0 green:113.0 / 255.0 blue:121.0 / 255.0 alpha:1.0]; }
// Error
+(UIColor *)errorColor
{ return [[UIColor alloc] initWithRed:255.0 / 255.0 green:193.0 / 255.0 blue:7.0 / 255.0 alpha:1.0]; }
// Card
+(UIColor *)stripeCardBackgroundColor
{ return [[UIColor alloc] initWithRed:154.0 / 255.0 green:154.0 / 255.0 blue:154.0 / 255.0 alpha:1.0]; }
+(UIColor *)stripeCardTextColor
{ return [[UIColor alloc] initWithRed:255.0 / 255.0 green:255.0 / 255.0 blue:255.0 / 255.0 alpha:1.0]; }
// History
+(UIColor *)paidColor
{ return [[UIColor alloc] initWithRed:99.0 / 255.0 green:186.0 / 255.0 blue:104.0 / 255.0 alpha:1.0]; }
+(UIColor *)pendingColor
{ return [[UIColor alloc] initWithRed:255.0 / 255.0 green:204.0 / 255.0 blue:51.0 / 255.0 alpha:1.0]; }
@end