Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions fern/products/docs/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ navigation:
- section: Customization
collapsed: true
contents:
- page: Themes
path: ./pages/customization/themes.mdx
- page: Announcement banner
path: ./pages/navigation/announcement-banner.mdx
- page: Changelogs
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions fern/products/docs/pages/customization/themes.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: Themes
subtitle: Pre-built visual styles for your documentation site
---

<Card
title="Rounded corners"
src="rounded-corners-theme.png"
imagePosition="top"
href="https://github.com/fern-demo/rounded-corners-theme"
imageHeight="90%"
>
Features rounded UI components and a nature/water color palette. Applies `backdrop-filter` blur to Cards, Buttons, and other navigation elements for a frosted glass appearance.

<p className="text-(color:--grayscale-a11) font-bold mt-2 flex items-center gap-1">
Use this template

<img src="https://files.buildwithfern.com/fern.docs.buildwithfern.com/learn/2025-09-30T17:39:54.370Z/products/home/pages/images/arrow-right-black.svg" alt="Arrow right light" className="arrow-right dark:hidden m-0 h-4 w-4" noZoom={false} />

<img src="https://files.buildwithfern.com/fern.docs.buildwithfern.com/learn/2025-09-30T17:39:54.370Z/products/home/pages/images/arrow-right-white.svg" alt="Arrow right light" className="arrow-right hidden dark:block m-0 h-4 w-4" />
</p>
</Card>




5 changes: 5 additions & 0 deletions fern/products/docs/pages/getting-started/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ In this guide, we'll show you how to get started with Fern in under 5 minutes.
```
</Accordion>
<Accordion title='Brand your docs'>

<Note>
For pre-built visual styles, explore [all Fern documentation themes](/docs/customization/themes).
</Note>

All of the branding for your docs can be configured in the `docs.yml` file.

For example, to set the logos, colors, and fonts for your docs, you can
Expand Down
Loading