Files
Possible ff0b919d62 Update
2025-02-28 20:42:24 +01:00

27 lines
612 B
TypeScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./node_modules/tw-elements/dist/js/**/*.js",
],
theme: {
extend: {
colors: {
primaryBlue: "#4F46E5",
"primary-light": "#4F46E550",
},
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-3deg)" },
"50%": { transform: "rotate(3deg)" },
},
},
animation: {
wiggle: "wiggle 200ms ease-in-out",
},
},
},
plugins: [require("tw-elements/dist/plugin"), require("@tailwindcss/forms")],
};