-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcolors.js
96 lines (95 loc) · 2.09 KB
/
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
/* Colors are from FlatUI http://designmodo.github.io/Flat-UI/ */
var mlvlColors = {
'highContrast': [
'#2980B9', // belize hole
'#16A085', // green sea
'#8E44AD', // wisteria
'#E67E22', // carrot
'#2C3E50', // midnight blue
'#27AE60', // nephritis
'#D35400', // pumpkin
'#C0392B', // pomegranate
],
'vis': [
'#FCF3CF',
'#F9E79F',
'#F7DC6F',
'#F4D03F',
'#F1C40F',
'#1A4C6E',
'#2772A4',
'#3498DB',
'#5DADE2',
'#85C1E9',
'#A3E4D7',
'#76D7C4',
'#48C9B0',
'#1ABC9C',
'#148D75',
'#AD5F1A',
'#E67E22',
'#EB984E',
'#F0B27A',
'#F5CBA7',
'#D7BDE2',
'#C39BD3',
'#AF7AC5',
'#9B59B6',
'#744389'
],
'yellowShades': [ // based on sunflower
'#FCF3CF',
'#F9E79F',
'#F7DC6F',
'#F4D03F',
'#F1C40F'
],
'blueShades': [ // based on peterriver
'#1A4C6E',
'#2772A4',
'#3498DB',
'#5DADE2',
'#85C1E9'
],
'turquoiseShades': [ // based on turquoise
'#A3E4D7',
'#76D7C4',
'#48C9B0',
'#1ABC9C',
'#148D75'
],
'orangeShades': [ // based on carrot
'#AD5F1A',
'#E67E22',
'#EB984E',
'#F0B27A',
'#F5CBA7'
],
'purpleShades': [ // based on amethyst
'#D7BDE2',
'#C39BD3',
'#AF7AC5',
'#9B59B6',
'#744389'
],
'turquoise': '#1abc9c',
'emerald': '#2ecc71',
'green_sea': '#16a085',
'nephritis': '#27ae60',
'peter_river': '#3498db',
'amethyst': '#9b59b6',
'belize_hole': '#2980b9',
'wisteria': '#8e44ad',
'wet_asphalt': '#34495e',
'sunflower': '#f1c40f',
'midnight_blue': '#2C3E50',
'orange': '#f39c12',
'carrot': '#E67E22',
'alizarin': '#e74c3c',
'pumpkin': '#D35400',
'pomegranate': '#C0392B',
'clouds': '#ecf0f1',
'concrete': '#95a5a6',
'silver': '#bdc3c7',
'asbetos': '#7f8c8d'
}