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