Files
kan/apps/web/tailwind.config.ts
Ridham Khandar 3233c35836 fix: board not found flicker on reloading public boards (#149)
* fix: board not found flicker on reloading public boards

* fix: using netx-theme's ThemeProvider

* chore: installing next-theme

* fix: theme issue on landing page

* fix: image theme hydration issue
2025-08-22 17:28:59 +02:00

19 lines
508 B
TypeScript

import type { Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
import baseConfig from "@kan/tailwind-config/web";
export default {
darkMode: "class",
content: [...baseConfig.content],
plugins: [require("@tailwindcss/typography")],
presets: [baseConfig],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-geist-sans)", ...fontFamily.sans],
mono: ["var(--font-geist-mono)", ...fontFamily.mono],
},
},
},
} satisfies Config;