29 lines
716 B
JavaScript
29 lines
716 B
JavaScript
module.exports = {
|
|
content: ["./src/**/*.{ts,tsx}", "./index.html"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ink: "#0f172a",
|
|
fog: "#e2e8f0",
|
|
mint: "#14b8a6",
|
|
steel: "#94a3b8"
|
|
},
|
|
keyframes: {
|
|
"accordion-down": {
|
|
from: { height: "0" },
|
|
to: { height: "var(--radix-accordion-content-height)" }
|
|
},
|
|
"accordion-up": {
|
|
from: { height: "var(--radix-accordion-content-height)" },
|
|
to: { height: "0" }
|
|
}
|
|
},
|
|
animation: {
|
|
"accordion-down": "accordion-down 0.2s ease-out",
|
|
"accordion-up": "accordion-up 0.2s ease-out"
|
|
}
|
|
}
|
|
},
|
|
plugins: [require("tailwindcss-animate")]
|
|
};
|