Example Docs

Customize

Make your documentation site uniquely yours with themes, fonts, and custom components.

Theming

Choose from built-in themes or create your own:

import { greentree } from "@farming-labs/theme/greentree";

export default defineDocs({
  theme: greentree({
    /* overrides */
  }),
});

Available Themes

Nine built-in themes:

ThemeDescription
fumadocsDefault theme with clean design
darksharpAll-black, sharp corners
pixel-borderRefined dark UI inspired by better-auth.com
colorfulFumadocs-style neutral with description support
greentreeGreen-accented Mintlify-inspired theme
darkboldMonochrome Vercel-inspired theme
shinyGlossy modern theme
hardlineHard-edge high-contrast interface
concreteBrutalist poster-style interface with loud depth

Quick Customization

Override any theme value:

theme: greentree({
  ui: {
    colors: { primary: "#FF6B35" },
    sidebar: { style: "bordered" },
  },
});