-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 936 Bytes
/
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
module.exports = {
content: ['./src/**/*.{js,jsx}'],
theme: {
fontFamily: {
body: ['Raleway', 'sans-serif']
},
colors: {
clr: {
i: 'hsl(173, 65%, 70%)',
ii: 'hsl(153, 28%, 85%)',
iii: 'hsl(9, 52%, 65%)',
iiii: 'hsl(341, 35%, 43%)',
iiiii: 'hsl(48, 93%, 63%)',
iiiiii: 'hsl(207, 83%, 61%)',
iiiiiii: 'hsl(87, 90%, %)'
},
red: {
i: 'hsl(352, 85%, 57%)',
ii: 'hsl(346, 58%, 45%)',
iii: 'hsl(282, 55%, 22%)'
},
white: '#fff',
black: '#000',
gray: {
100: '#ededed',
200: '#a0a0a0'
},
transparent: 'transparent'
},
extend: {
keyframes: {
scroll: {
'0%': {
transform: 'translateX(100%)'
},
'100%': {
transform: 'translateX(-100%)'
}
},
opi: {
'50%': {
opacity: '.75'
}
}
},
animation: {
scroll: 'scroll 10s infinite linear',
opi: 'opi 3s infinite alternate'
}
}
}
}