-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMNLMacOSColorPalette.m
114 lines (93 loc) · 3.22 KB
/
MNLMacOSColorPalette.m
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#import "MNLColorInternal.h"
/// @brief
/// A private variable for Blue colour.
/// @details
/// This variable is for implement a singleton.
/// @note
/// rgb(27, 173, 248)
static MNLColor *MNLMacOSBlueColor;
/// @brief
/// A private variable for Brown colour.
/// @details
/// This variable is for implement a singleton.
/// @note
/// rgb(162, 132, 94)
static MNLColor *MNLMacOSBrownColor;
/// @brief
/// A private variable for Gray colour.
/// @details
/// This variable is for implement a singleton.
/// @note
/// rgb(142, 142, 145)
static MNLColor *MNLMacOSGrayColor;
/// @brief
/// A private variable for Green colour.
/// @details
/// This variable is for implement a singleton.
/// @note
/// rgb(99, 218, 56)
static MNLColor *MNLMacOSGreenColor;
/// @brief
/// A private variable for Orange colour.
/// @details
/// This variable is for implement a singleton.
/// @note
/// rgb(255, 149, 0)
static MNLColor *MNLMacOSOrangeColor;
/// @brief
/// A private variable for Pink colour.
/// @details
/// This variable is for implement a singleton.
/// @note
/// rgb(255, 41, 104)
static MNLColor *MNLMacOSPinkColor;
/// @brief
/// A private variable for Purple colour.
/// @details
/// This variable is for implement a singleton.
/// @note
/// rgb(204, 115, 225)
static MNLColor *MNLMacOSPurpleColor;
/// @brief
/// A private variable for Red colour.
/// @details
/// This variable is for implement a singleton.
/// @note
/// rgb(255, 59, 48)
static MNLColor *MNLMacOSRedColor;
/// @brief
/// A private variable for Yellow colour.
/// @details
/// This variable is for implement a singleton.
/// @note
/// rgb(255, 204, 0)
static MNLColor *MNLMacOSYellowColor;
@implementation MNLMacOSColorPalette
+ (MNLColor *)blueColor {
MNLReturnSingletonColor([[MNLColor alloc] initWithHexadecimalRed:27 green:173 blue:248 colorSpace:MNLColorSpaceSRGB], MNLMacOSBlueColor);
}
+ (MNLColor *)brownColor {
MNLReturnSingletonColor([[MNLColor alloc] initWithHexadecimalRed:162 green:132 blue:94 colorSpace:MNLColorSpaceSRGB], MNLMacOSBrownColor);
}
+ (MNLColor *)grayColor {
MNLReturnSingletonColor([[MNLColor alloc] initWithHexadecimalRed:142 green:142 blue:145 colorSpace:MNLColorSpaceSRGB], MNLMacOSGrayColor);
}
+ (MNLColor *)greenColor {
MNLReturnSingletonColor([[MNLColor alloc] initWithHexadecimalRed:99 green:218 blue:56 colorSpace:MNLColorSpaceSRGB], MNLMacOSGreenColor);
}
+ (MNLColor *)orangeColor {
MNLReturnSingletonColor([[MNLColor alloc] initWithHexadecimalRed:255 green:149 blue:0 colorSpace:MNLColorSpaceSRGB], MNLMacOSOrangeColor);
}
+ (MNLColor *)pinkColor {
MNLReturnSingletonColor([[MNLColor alloc] initWithHexadecimalRed:255 green:41 blue:104 colorSpace:MNLColorSpaceSRGB], MNLMacOSPinkColor);
}
+ (MNLColor *)purpleColor {
MNLReturnSingletonColor([[MNLColor alloc] initWithHexadecimalRed:204 green:115 blue:225 colorSpace:MNLColorSpaceSRGB], MNLMacOSPurpleColor);
}
+ (MNLColor *)redColor {
MNLReturnSingletonColor([[MNLColor alloc] initWithHexadecimalRed:255 green:59 blue:48 colorSpace:MNLColorSpaceSRGB], MNLMacOSRedColor);
}
+ (MNLColor *)yellowColor {
MNLReturnSingletonColor([[MNLColor alloc] initWithHexadecimalRed:255 green:204 blue:0 colorSpace:MNLColorSpaceSRGB], MNLMacOSYellowColor);
}
@end