-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.37 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#1976d2',
},
animation: {
'border-move': 'border-move 4s ease infinite',
shimmer: "shimmer 3s ease-in-out infinite",
spotlight: "spotlight 2s ease .75s 1 forwards",
'gradient': 'gradient 8s linear infinite',
},
keyframes: {
'border-move': {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
shimmer: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(100%)' }
},
spotlight: {
"0%": {
opacity: 0,
transform: "translate(-72%, -62%) scale(0.5)",
},
"100%": {
opacity: 1,
transform: "translate(-50%,-40%) scale(1)",
},
},
gradient: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
},
backgroundImage: {
'dot-white': 'radial-gradient(circle at center, #E2E8F0 1px, transparent 1px)',
},
backgroundSize: {
'dot-pattern': '24px 24px',
},
},
},
plugins: [],
important: true,
}