angular-hotel-manager/tailwind.config.js

26 lines
539 B
JavaScript
Raw Normal View History

2024-08-20 14:26:19 +02:00
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
2024-08-20 14:26:19 +02:00
module.exports = {
content: ["./src/**/*.{html,ts}"],
2024-08-20 14:26:19 +02:00
theme: {
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)" },
2025-01-07 09:59:47 +01:00
},
},
animation: {
shake: "shake 10s ease-in-out infinite",
2025-01-07 09:59:47 +01:00
},
},
2024-08-20 14:26:19 +02:00
},
plugins: [],
};