MozaikaDesign system

Penpot — Design System

light · modern · high · custom · confidence 92%

Penpot designs open-source in Work Sans at 72px/400, deep indigo #151035 on white, with teal #14CECA buttons at 8px radius and hand-drawn accents scribbled over the grid. Canvas UI and code-inspect panels alternate — the Figma alternative wearing an open-source Google font as a matter of principle, roughed up just enough to feel community-made.

Open in Mozaika →

This is a static, crawlable rendering for search & AI engines. The interactive version — filters, live decode console, copy & export — is at https://mozaika.design/ds/penpot.

Tokens

Penpot's decoded design system: background #F5F8FB, text #151035, accent #14CECA, link #151035, primary #14CECA; type scale h1 72px / h2 72px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #14CECA — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F5F8FB
surface#E7EAEF
border#D3D5DD
text#151035
text_muted#6A6880
primary#14CECA
accent#14CECA
link#151035
secondary#006ADC
button_bg#14CECA
button_text#151035

Using these colors

Typography

Spacing

Radii

Per-section tokens (9)

Export: DESIGN.md

# Penpot — Design System

> light, modern, high, custom

Penpot designs open-source in Work Sans at 72px/400, deep indigo #151035 on white, with teal #14CECA buttons at 8px radius and hand-drawn accents scribbled over the grid. Canvas UI and code-inspect panels alternate — the Figma alternative wearing an open-source Google font as a matter of principle, roughed up just enough to feel community-made.

## Colors

| Role | Value |
|------|-------|
| bg | `#F5F8FB` |
| surface | `#E7EAEF` |
| border | `#D3D5DD` |
| text | `#151035` |
| text_muted | `#6A6880` |
| primary | `#14CECA` |
| accent | `#14CECA` |
| link | `#151035` |
| secondary | `#006ADC` |
| button_bg | `#14CECA` |
| button_text | `#151035` |

**Using these colors**

- **Action color** `#14CECA` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary`, `accent`, `button_bg` are all `#14CECA` — one role, not several (your action color).
- **accent** `#14CECA` — THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed.
- **link** `#151035` — inline text links and link-styled controls.
- **secondary** `#006ADC` — optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two.

## Typography

- Heading: **Work Sans**
- Body: **Work Sans**
- h1: 72px
- h2: 72px
- body: 16px

> **Fonts —** Work Sans — free, on Google.

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px

## Radius
- base: 8px
- button: 8px

## Primary button
- bg `#14CECA` · text `#151035` · radius 8px

## How to apply
Paste the Tailwind `@theme` (or CSS variables) as your base, then build each
section to its spec — verify every color, radius, and font against these tokens.

Export: Tailwind v4 (@theme)

@theme {
  /* action color #14CECA — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F5F8FB;
  --color-surface: #E7EAEF;
  --color-border: #D3D5DD;
  --color-text: #151035;
  --color-text-muted: #6A6880;
  --color-primary: #14CECA;  /* primary brand / action color. */
  --color-accent: #14CECA;  /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
  --color-link: #151035;  /* inline text links and link-styled controls. */
  --color-secondary: #006ADC;  /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
  --color-button-bg: #14CECA;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #151035;
  /* fonts: Work Sans — free, on Google. */
  --font-heading: "Work Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 72px;
  --text-h2: 72px;
  --text-body: 16px;
  --radius-base: 8px;
  --radius-button: 8px;
  --spacing-1: 2px;
  --spacing-2: 4px;
  --spacing-3: 6px;
  --spacing-4: 8px;
  --spacing-5: 12px;
  --spacing-6: 16px;
  --spacing-7: 24px;
  --spacing-8: 32px;
}

Export: CSS variables

:root {
  /* action color #14CECA — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F5F8FB;
  --surface: #E7EAEF;
  --border: #D3D5DD;
  --text: #151035;
  --text-muted: #6A6880;
  --primary: #14CECA;  /* primary brand / action color. */
  --accent: #14CECA;  /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
  --link: #151035;  /* inline text links and link-styled controls. */
  --secondary: #006ADC;  /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
  --button-bg: #14CECA;  /* primary-button fill — the main call-to-action color. */
  --button-text: #151035;
  --font-heading: "Work Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 8px;
}
/* fonts: Work Sans — free, on Google. */