# Default
URL: /docs/themes/default
LLM index: /llms.txt
Description: Clean, neutral palette with standard border radius

# Default Theme

Use this page when the user asks about this topic: Clean, neutral palette with standard border radius.
Keep answers grounded in the exact options, routes, commands, and examples documented here.
If the request moves beyond this page, point to the closest related docs instead of inventing config.

The default Fumadocs theme with a neutral color palette and standard border radii.

## Usage

```tsx title="docs.config.ts"
import { defineDocs } from "@farming-labs/docs";
import { fumadocs } from "@farming-labs/theme";

export default defineDocs({
  entry: "docs",
  theme: fumadocs(),
});
```

```css title="app/global.css"
@import "tailwindcss";
@import "@farming-labs/theme/default/css";
```

## Defaults

| Property      | Value              |
| ------------- | ------------------ |
| Primary       | `#6366f1` (Indigo) |
| Background    | `#ffffff`          |
| Border radius | Standard           |
| Content width | 768px              |
| Sidebar width | 280px              |

## Customizing

```tsx title="customizing.tsx"
theme: fumadocs({
  ui: {
    colors: { primary: "#22c55e" },
    layout: { contentWidth: 900 },
  },
}),
```