# Darksharp
URL: /docs/themes/darksharp
LLM index: /llms.txt
Description: All-black theme with sharp corners

# Darksharp Theme

Use this page when the user asks about this topic: All-black theme with sharp corners.
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.

An all-black theme with `rounded-none` styling — clean, minimal, and sharp.

## Usage

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

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

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

## Defaults

| Property      | Value                  |
| ------------- | ---------------------- |
| Primary       | Near-white             |
| Background    | `#000000` (pure black) |
| Border radius | `0px` (no rounding)    |
| Content width | 860px                  |
| Sidebar width | 286px                  |

## Customizing

```tsx title="customizing.tsx"
theme: darksharp({
  ui: {
    colors: { primary: "oklch(0.65 0.25 270)" },
  },
}),
```