37 lines
780 B
TypeScript
37 lines
780 B
TypeScript
|
import type { Config } from "tailwindcss";
|
||
|
import typography from '@tailwindcss/typography';
|
||
|
|
||
|
export default {
|
||
|
content: [
|
||
|
"./app/**/*.{js,jsx,ts,tsx}",
|
||
|
"./common/**/*.{js,jsx,ts,tsx}",
|
||
|
"./core/**/*.{js,jsx,ts,tsx}",
|
||
|
"./hooks/**/*.{js,jsx,ts,tsx}",
|
||
|
"./themes/**/*.{js,jsx,ts,tsx}",
|
||
|
],
|
||
|
darkMode: 'class',
|
||
|
important: true,
|
||
|
theme: {
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
sans: ["Inter", "system-ui", "sans-serif"],
|
||
|
},
|
||
|
keyframes: {
|
||
|
progress: {
|
||
|
from: { transform: "scaleX(1)" },
|
||
|
to: { transform: "scaleX(0)" },
|
||
|
},
|
||
|
},
|
||
|
animation: {
|
||
|
progress: "progress 3s linear",
|
||
|
},
|
||
|
zIndex: {
|
||
|
"-10": "-10",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [
|
||
|
typography,
|
||
|
],
|
||
|
} satisfies Config;
|