mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
32 lines
696 B
JavaScript
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%",
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
};
|