22 lines
673 B
JavaScript
22 lines
673 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
mono: ["'JetBrains Mono'", "ui-monospace", "SFMono-Regular", "monospace"],
|
|
sans: ["Inter", "system-ui", "-apple-system", "sans-serif"],
|
|
},
|
|
keyframes: {
|
|
"fade-in": { "0%": { opacity: "0" }, "100%": { opacity: "1" } },
|
|
shimmer: { "0%": { backgroundPosition: "-200% 0" }, "100%": { backgroundPosition: "200% 0" } },
|
|
},
|
|
animation: {
|
|
"fade-in": "fade-in 0.3s ease-out",
|
|
shimmer: "shimmer 2s linear infinite",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|