Skip to main content

Showcase

Sample content so you can see how the theme renders. Tables, code, lists — the usual doc stuff.

Tables

How a typical reference table looks:

CommandDescription
npm run buildBuild the site for production
npm run startStart dev server with hot reload
npm run serveServe the built site locally

Another example — with more columns:

ComponentVersionNotes
Docusaurus3.9.2Core framework
React18.xUI layer
Node20+Required runtime

Code blocks

Bash:

# Copy the theme into your project
cp custom.css my-docs/src/css/

# Add to docusaurus.config.js
# theme: { customCss: './src/css/custom.css' }

JavaScript:

export default {
theme: {
customCss: './src/css/custom.css',
},
themeConfig: {
colorMode: {
defaultMode: 'dark',
},
},
};

Inline code

Use custom.css in your project. Set --accent to change the highlight color.

Lists

Unordered:

  • Syne for headings
  • IBM Plex Sans for body
  • IBM Plex Mono for code

Ordered:

  1. Copy custom.css to src/css/
  2. Add it to your config
  3. Rebuild

Headings

H3 — Section

Smaller sections use this size.

H4 — Subsection

Even smaller for nested content.

Blockquote

The theme is just CSS. No JavaScript, no plugins. Drop it in and it works.

Summary

That's how tables, code, lists, and headings look. If this matches what you want for your docs, grab the theme from the repo and follow the Install guide.