-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpersian-colors.js
152 lines (152 loc) · 2.76 KB
/
persian-colors.js
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
export const PERSIAN_COLORS = [
{
name: "Persian Strong Blue",
group: "Blue",
hex: "0067A5",
rgb: [0, 103, 165],
},
{
name: "Persian Pale Blue",
group: "Blue",
hex: "91A3B0",
rgb: [145, 163, 176],
},
{
name: "Persian Vivid Pale Blue",
group: "Blue",
hex: "BCD4E6",
rgb: [188, 212, 230],
},
{
name: "Persian Vivid Blue",
group: "Blue",
hex: "1C39BB",
rgb: [28, 57, 187],
},
{
name: "Persian Grayish Purplish Blue",
group: "Blue",
hex: "4C516D",
rgb: [76, 81, 109],
},
{
name: "Persian Vivid Purplish Blue",
group: "Blue",
hex: "32127A",
rgb: [50, 18, 122],
},
{
name: "Persian Strong Reddish Brown",
group: "Brown",
hex: "882D17",
rgb: [136, 45, 23],
},
{
name: "Persian Grayish Green",
group: "Green",
hex: "5E716A",
rgb: [94, 113, 106],
},
{
name: "Persian Dark Grayish Green",
group: "Green",
hex: "3A4B47",
rgb: [58, 75, 71],
},
{
name: "Persian Brilliant Bluish Green",
group: "Green",
hex: "00A693",
rgb: [0, 166, 147],
},
{
name: "Persian Moderate Bluish Green",
group: "Green",
hex: "317873",
rgb: [49, 120, 115],
},
{
name: "Persian Moderate Reddish Orange",
group: "Orange",
hex: "CB6D51",
rgb: [203, 109, 81],
},
{
name: "Persian Grayish Reddish Orange",
group: "Orange",
hex: "B4745E",
rgb: [180, 116, 94],
},
{
name: "Persian Vivid Reddish Orange",
group: "Orange",
hex: "E25822",
rgb: [226, 88, 34],
},
{
name: "Persian Moderate Orange",
group: "Orange",
hex: "D99058",
rgb: [217, 144, 88],
},
{
name: "Persian Vivid Orange",
group: "Orange",
hex: "F38400",
rgb: [243, 132, 0],
},
{
name: "Persian Deep Purplish Pink",
group: "Pink",
hex: "F77FBE",
rgb: [247, 127, 190],
},
{
name: "Persian Moderate Purplish Pink",
group: "Pink",
hex: "D597AE",
rgb: [213, 151, 174],
},
{
name: "Persian Dark Purplish Pink",
group: "Pink",
hex: "C17E91",
rgb: [193, 126, 145],
},
{
name: "Persian Vivid Reddish Purple",
group: "Purple",
hex: "870074",
rgb: [135, 0, 116],
},
{
name: "Persian Vivid Purplish Red",
group: "Red",
hex: "FE28A2",
rgb: [254, 40, 162],
},
{
name: "Persian Strong Purplish Red",
group: "Red",
hex: "B3446C",
rgb: [179, 68, 108],
},
{
name: "Persian Vivid Purplish Red",
group: "Red",
hex: "CE4676",
rgb: [206, 70, 118],
},
{
name: "Persian Moderate Purplish Red",
group: "Red",
hex: "A8516E",
rgb: [168, 81, 110],
},
{
name: "Persian Vivid Red",
group: "Red",
hex: "CC3333",
rgb: [204, 51, 51],
},
];