hamburger/tailwind.config.ts

19 lines
415 B
TypeScript
Raw Normal View History

2024-12-21 21:35:42 +01:00
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
2024-12-22 01:37:41 +01:00
plugins: [require('@tailwindcss/typography')],
2024-12-21 21:35:42 +01:00
} satisfies Config;