-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (39 loc) · 1.13 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
`./src/pages/**/*.{js,jsx,ts,tsx}`,
`./src/components/**/*.{js,jsx,ts,tsx}`,
],
theme: {
extend: {
animation: {
'infinite-scroll': 'infinite-scroll 30s linear infinite',
'infinite-scroll-reverse': 'infinite-scroll-reverse 30s linear infinite',
},
keyframes: {
'infinite-scroll': {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(calc(-50% - 30px))' },
},
'infinite-scroll-reverse': {
from: { transform: 'translateX(calc(-50% - 30px))' },
to: { transform: 'translateX(0)' },
},
},
fontFamily: {
'poppins': ["Poppins", "sans-serif"]
},
backgroundImage: {
'top-union': "url('/src/images/bg-top.png')",
'bottom-union': "url('src/images/bg-bottom.png')"
},
colors: {
'blue1': 'rgba(51, 122, 234, 1)',
'blue2': 'rgba(79, 55, 234, 1)',
'purple': 'rgba(143, 38, 233, 1)',
'white-tint': 'rgba(255, 255, 255, 0.02)',
}
},
},
plugins: [],
}