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: { flip: "flip 6s infinite steps(2, end)", rotate: "rotate 3s linear infinite both", }, keyframes: { flip: { to: { transform: "rotate(360deg)", }, }, rotate: { to: { transform: "rotate(90deg)", }, }, }, }, }, plugins: [], } satisfies Config;