forked from Kriesse/dat-colors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
37 lines (37 loc) · 848 Bytes
/
index.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
module.exports = {
white: '#FFFFFF',
black: '#070B14',
neutral: '#293648',
neutral90: '#394B5B',
neutral80: '#505F6D',
neutral70: '#65737F',
neutral60: '#7C8792',
neutral50: '#919BA4',
neutral40: '#A7AFB6',
neutral30: '#C3C9CD',
neutral20: '#D3D7DB',
neutral14: '#E0E3E5',
neutral10: '#E9EBEC',
neutral04: '#F6F7F8',
green: '#2ACA4B',
greenHover: '#199E33',
greenDarker: '#006607',
greenDisabled: '#94E4A5',
blue: '#007FFF',
blueHover: '#0066CC',
blueDarker: '#003E83',
blueDisabled: '#7FBFFF',
mint: '#159F84',
mintHover: '#0B856D',
mintDarker: '#045943',
mintDisabled: '#8ACFC1',
yellow: '#F2CD02',
yellowHover: '#C4A500',
yellowDarker: '#9F7D07',
yellowDisabled: '#FBF0B3',
red: '#D8524E',
redHover: '#B33C38',
redDarker: '#A52724',
redDisabled: '#EBA8A6',
pink: '#F9A5E4'
}