Home /

docs

Ledger Theme

A product-docs preset inspired by , with neutral branding for @farming-labs/docs projects.

Usage

docs.config.ts
import { defineDocs } from "@farming-labs/docs";
import { ledger } from "@farming-labs/theme/ledger";

export default defineDocs({
  entry: "docs",
  theme: ledger(),
});
app/global.css
@import "tailwindcss";
@import "@farming-labs/theme/ledger/css";

Defaults

PropertyValue
Primary#5f6cf6
Background#f6f8fb (light), #0f1424 (dark)
Border#dbe3ef
Border radius0.5rem
Content width820px
Sidebar width292px
Header height64px

Style Notes

Customizing

customizing.tsx
theme: ledger({
  ui: {
    colors: { primary: "#2563eb" },
    layout: { sidebarWidth: 304, tocWidth: 248 },
  },
}),