-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (48 loc) · 1 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
module.exports = {
content: ['index.html', './src/**/*.{js,jsx,ts,tsx,vue,html}'],
theme: {
extend: {
backgroundImage: {
blur: 'url(/src/assets/blur.png)'
},
colors: {
blue: {
300: '#81D8F7',
500: '#3845BD'
},
orange: {
500: '#FBA94C'
},
red: {
500: '#F75A68'
},
gray: {
100: '#E1E1E6',
200: '#C4C4CC',
300: '#8D8D99',
500: '#323238',
600: '#29292E',
700: '#121214',
900: '#09090A'
}
},
fontFamily: {
brand: 'Roboto, sans-serif'
},
animation: {
slide: '0.3s ease-in-out 0s 1 normal none running slide'
},
keyframes: {
slide: {
'0%, 100%': {
transform: 'translateX(100%)'
},
'100%': {
transform: 'translateX(0)'
}
}
}
}
},
plugins: [require('tailwind-scrollbar')]
}