2024-08-20 14:26:19 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2024-09-03 09:10:37 +02:00
|
|
|
|
|
|
|
const colors = require('tailwindcss/colors');
|
|
|
|
|
2024-08-20 14:26:19 +02:00
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
"./src/**/*.{html,ts}",
|
|
|
|
],
|
|
|
|
theme: {
|
2024-09-03 09:10:37 +02:00
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
...colors,
|
2025-01-07 09:59:47 +01:00
|
|
|
},
|
|
|
|
keyframes: {
|
|
|
|
shake: {
|
|
|
|
'0%, 100%': { transform: 'translateX(0)' },
|
|
|
|
'25%': { transform: 'translateX(-30px)' },
|
|
|
|
'75%': { transform: 'translateX(30px)' },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
shake: 'shake 0.2s ease-in-out infinite',
|
|
|
|
},
|
2024-09-03 09:10:37 +02:00
|
|
|
},
|
2024-08-20 14:26:19 +02:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|
|
|
|
|