-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDecomojiColors.js
74 lines (74 loc) · 1.12 KB
/
DecomojiColors.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
export const DecomojiColors = [
{
name: "tomato",
hex: "dd3b40",
rgb: "221,59,64",
hsl: "358,86,59",
},
{
name: "chocolate",
hex: "c05b2c",
rgb: "192,91,44",
hsl: "19,63,46",
},
{
name: "gold",
hex: "9f7e00",
rgb: "159,126,0",
hsl: "48,100,31",
},
{
name: "olive",
hex: "688200",
rgb: "104,130,0",
hsl: "72,100,25",
},
{
name: "forest",
hex: "008c22",
rgb: "0,140,34",
hsl: "135,100,27",
},
{
name: "teal",
hex: "008780",
rgb: "0,135,128",
hsl: "177,100,26",
},
{
name: "cerulean",
hex: "0081b1",
rgb: "0,129,177",
hsl: "196,100,35",
},
{
name: "denim",
hex: "477f9b",
rgb: "71,127,155",
hsl: "200,37,44",
},
{
name: "danube",
hex: "5d79aa",
rgb: "93,121,170",
hsl: "218,31,52",
},
{
name: "lavender",
hex: "a156d2",
rgb: "161,86,210",
hsl: "276,58,58",
},
{
name: "azalea",
hex: "d43892",
rgb: "212,56,146",
hsl: "325,64,53",
},
{
name: "coral",
hex: "a36969",
rgb: "163,105,105",
hsl: "0,24,53",
},
];