MozaikaDesign system

Windsurf — Design System

light · modern · medium · tailwind · confidence 90%

The full decoded design system for Windsurf: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

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/windsurf.

Tokens

Windsurf's decoded design system: background #F7F6F5, text #191919, accent #317CFF, link #317CFF, primary #2200FF; type scale h1 64px / h2 40px / body 16px; 8px spacing base; 0px base radius. The single interactive/action color is #F7F6F5 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F7F6F5
surface#E9E8E7
border#D5D4D4
text#191919
text_muted#6D6C6C
primary#2200FF
accent#317CFF
link#317CFF
secondary#317CFF
button_bg#F7F6F5
button_text#191919

Using these colors

Typography

Spacing

Radii

Per-section tokens (14)

Export: DESIGN.md

# Windsurf — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#F7F6F5` |
| surface | `#E9E8E7` |
| border | `#D5D4D4` |
| text | `#191919` |
| text_muted | `#6D6C6C` |
| primary | `#2200FF` |
| accent | `#317CFF` |
| link | `#317CFF` |
| secondary | `#317CFF` |
| button_bg | `#F7F6F5` |
| button_text | `#191919` |

**Using these colors**

- **Action color** `#F7F6F5` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `link`, `secondary` are all `#317CFF` — one role, not several.
- **accent** `#317CFF` — accent for emphasis — keep it rare on the page.
- **primary** `#2200FF` — a brand color — but the call-to-action uses #F7F6F5, not this.

## Typography

- Heading: **NB International Pro** _(free fallback: Newsreader)_
- Body: **NB International Pro** _(free fallback: Newsreader)_
- Mono: **Geist Mono**
- h1: 64px
- h2: 40px
- body: 16px

> **Fonts —** NB International Pro may be proprietary — safe free fallback: Newsreader (Google Fonts).

## Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px

## Radius
- base: 0px
- button: 2px

## Primary button
- bg `#F7F6F5` · text `#191919` · radius 2px

## 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 #F7F6F5 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F7F6F5;
  --color-surface: #E9E8E7;
  --color-border: #D5D4D4;
  --color-text: #191919;
  --color-text-muted: #6D6C6C;
  --color-primary: #2200FF;  /* a brand color — but the call-to-action uses #F7F6F5, not this. */
  --color-accent: #317CFF;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #317CFF;  /* inline text links and link-styled controls. */
  --color-secondary: #317CFF;  /* 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: #F7F6F5;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #191919;
  /* fonts: NB International Pro may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "NB International Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "NB International Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --text-h1: 64px;
  --text-h2: 40px;
  --text-body: 16px;
  --radius-base: 0px;
  --radius-button: 2px;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 24px;
  --spacing-6: 32px;
  --spacing-7: 48px;
  --spacing-8: 64px;
}

Export: CSS variables

:root {
  /* action color #F7F6F5 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F7F6F5;
  --surface: #E9E8E7;
  --border: #D5D4D4;
  --text: #191919;
  --text-muted: #6D6C6C;
  --primary: #2200FF;  /* a brand color — but the call-to-action uses #F7F6F5, not this. */
  --accent: #317CFF;  /* accent for emphasis — keep it rare on the page. */
  --link: #317CFF;  /* inline text links and link-styled controls. */
  --secondary: #317CFF;  /* 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: #F7F6F5;  /* primary-button fill — the main call-to-action color. */
  --button-text: #191919;
  --font-heading: "NB International Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "NB International Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --radius: 0px;
  --radius-button: 2px;
}
/* fonts: NB International Pro may be proprietary — safe free fallback: Newsreader (Google Fonts). */