32 lines
685 B
TypeScript
32 lines
685 B
TypeScript
|
|
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;
|