mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
feat: add monorepo
This commit is contained in:
31
apps/docs/tailwind.config.js
Normal file
31
apps/docs/tailwind.config.js
Normal file
@@ -0,0 +1,31 @@
|
||||
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%",
|
||||
},
|
||||
},
|
||||
}),
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user