forked from mrmrs/colors
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoffeescript.coffee
More file actions
74 lines (74 loc) · 854 Bytes
/
coffeescript.coffee
File metadata and controls
74 lines (74 loc) · 854 Bytes
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
colors =
[
# Cool Colors
{
name: "Aqua"
color: "#7FDBFF"
}
{
name: "Blue"
color: "#0074D9"
}
{
name: "Navy"
color: "#001F3F"
}
{
name: "Teal"
color: "#39CCCC"
}
{
name: "Green"
color: "#2ECC40"
}
{
name: "Olive"
color: "#3D9970"
}
{
name: "Lime"
color: "#01FF70"
}
# Warm Colors
{
name: "Yellow"
color: "#FFDC00"
}
{
name: "Orange"
color: "#FF851B"
}
{
name: "Red"
color: "#FF4136"
}
{
name: "Fuchsia"
color: "#F012BE"
}
{
name: "Purple"
color: "#B10DC9"
}
{
name: "Maroon"
color: "#85144B"
}
# Gray Scale Colors
{
name: "White"
color: "#fff"
}
{
name: "Silver"
color: "#ddd"
}
{
name: "Gray"
color: "#aaa"
}
{
name: "Black"
color: "#111"
}
]