forked from rubyforgood/inkind-volunteer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (69 loc) · 1.75 KB
/
tailwind.config.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
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false,
theme: {
boxShadow: {
md: "0 20px 20px -1px rgba(120, 144, 156, .5), 0 2px 20px -1px rgba(120, 144, 156, .5)",
},
extend: {
colors: {
'purple': '#673AB7',
'purple-light': '#D1C4E9',
'gray-lightest': '#F8FBFE',
'gray-light': '#CFD8DC',
'gray-medium': '#B0BEC5',
'gray-dark': '#37474F',
'login-gradient-top': '#512da8',
'login-gradient-middle': '#9575cd',
'login-gradient-bottom': '#1ed4eb',
primary: {
DEFAULT: '#673ab7',
'50': '#ede7f6',
'100': '#d1c4e9',
'200': '#b39ddb',
'300': '#9575cd',
'400': '#7e57c2',
'500': '#673ab7',
'600': '#5e35b1',
'700': '#512da8',
'800': '#4527a0',
'900': '#311b92',
},
secondary: {
DEFAULT: '#00bcd4',
'50': '#e0f7fa',
'100': '#b2ebf2',
'200': '#80deea',
'300': '#4dd0e1',
'400': '#26c6da',
'500': '#00bcd4',
'600': '#00acc1',
'700': '#0097a7',
'800': '#00838f',
'900': '#006064',
},
neutral: {
DEFAULT: '#607d8b',
'50': '#eceff1',
'100': '#cfd8dc',
'200': '#b0bec5',
'300': '#9a44ae',
'400': '#78909c',
'500': '#607d8b',
'600': '#546e7a',
'700': '#455a64',
'800': '#37474f',
'900': '#263238',
},
},
},
fontFamily: {
'nunito': ['nunito', 'sans-serif'],
'tenor': ['Tenor Sans', 'sans-serif'],
},
},
variants: {
extend: {},
},
plugins: [],
}