Files
internship_node/day20/tailwind.config.js
T
2025-07-23 23:25:19 +01:00

29 lines
666 B
JavaScript

/** @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")],
};