Files
website/apps/docs/tailwind.config.js
2024-10-27 22:16:31 -06:00

32 lines
696 B
JavaScript

import { createPreset, presets } from "fumadocs-ui/tailwind-plugin";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./content/**/*.{md,mdx}",
"./mdx-components.{ts,tsx}",
"./node_modules/fumadocs-ui/dist/**/*.js",
],
presets: [
createPreset({
preset: {
...presets.default,
dark: {
...presets.default.dark,
background: "0 0% 2%",
foreground: "0 0% 98%",
popover: "0 0% 4%",
card: "0 0% 4%",
muted: "0 0% 8%",
border: "0 0% 14%",
accent: "0 0% 15%",
"accent-foreground": "0 0% 100%",
"muted-foreground": "0 0% 60%",
},
},
}),
],
};