37 lines
892 B
JavaScript
37 lines
892 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#3498db',
|
|
hover: '#2980b9',
|
|
},
|
|
},
|
|
spacing: {
|
|
'128': '32rem',
|
|
},
|
|
animation: {
|
|
'spin-slow': 'spin 8s linear infinite',
|
|
'pulse-gentle': 'pulse 2s ease-in-out infinite',
|
|
'glow': 'ping 2s ease-in-out infinite',
|
|
},
|
|
keyframes: {
|
|
ping: {
|
|
'0%': { transform: 'scale(1)', opacity: '0.2' },
|
|
'50%': { transform: 'scale(1.2)', opacity: '0.3' },
|
|
'100%': { transform: 'scale(1)', opacity: '0.2' },
|
|
},
|
|
pulse: {
|
|
'0%, 100%': { transform: 'scale(1)' },
|
|
'50%': { transform: 'scale(1.05)' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|