claude-code-proxy/web/tailwind.config.ts

32 lines
685 B
TypeScript
Raw Normal View History

2025-06-29 19:27:00 -04:00
import type { Config } from "tailwindcss";
export default {
content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: [
"Inter",
"ui-sans-serif",
"system-ui",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
animation: {
spin: 'spin 1s linear infinite',
},
keyframes: {
spin: {
from: { transform: 'rotate(0deg)' },
to: { transform: 'rotate(360deg)' },
},
},
},
},
plugins: [],
} satisfies Config;