MozaikaDesign system

Cerebras — Design System

dark · professional · medium · tailwind · confidence 90%

The full decoded design system for Cerebras: 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/cerebras.

Tokens

Cerebras's decoded design system: background #2E2E2E, text #ECECEE, accent #FF985C, link #FF985C, primary #2E180F; type scale h1 64px / h2 36px / body 16px; 4px spacing base; 2px base radius. The single interactive/action color is #262626 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#2E2E2E
surface#393939
border#4A4A4A
text#ECECEE
text_muted#A3A3A5
primary#2E180F
accent#FF985C
link#FF985C
secondary#4C100B
button_bg#262626
button_text#1A1A1A

Using these colors

Typography

Spacing

Radii

Per-section tokens (14)

Export: DESIGN.md

# Cerebras — Design System

> dark, professional, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#2E2E2E` |
| surface | `#393939` |
| border | `#4A4A4A` |
| text | `#ECECEE` |
| text_muted | `#A3A3A5` |
| primary | `#2E180F` |
| accent | `#FF985C` |
| link | `#FF985C` |
| secondary | `#4C100B` |
| button_bg | `#262626` |
| button_text | `#1A1A1A` |

**Using these colors**

- **Action color** `#262626` — 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` are all `#FF985C` — one role, not several.
- **accent** `#FF985C` — accent for emphasis — keep it rare on the page.
- **primary** `#2E180F` — a brand color — but the call-to-action uses #262626, not this.
- **secondary** `#4C100B` — 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: **Manrope**
- Body: **Manrope**
- Mono: **Sometype Mono**
- h1: 64px
- h2: 36px
- body: 16px

> **Fonts —** Manrope — free, on Google.

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

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

## Primary button
- bg `#262626` · text `#1A1A1A` · 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 #262626 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #2E2E2E;
  --color-surface: #393939;
  --color-border: #4A4A4A;
  --color-text: #ECECEE;
  --color-text-muted: #A3A3A5;
  --color-primary: #2E180F;  /* a brand color — but the call-to-action uses #262626, not this. */
  --color-accent: #FF985C;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #FF985C;  /* inline text links and link-styled controls. */
  --color-secondary: #4C100B;  /* 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: #262626;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #1A1A1A;
  /* fonts: Manrope — free, on Google. */
  --font-heading: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Sometype Mono", ui-monospace, monospace;
  --text-h1: 64px;
  --text-h2: 36px;
  --text-body: 16px;
  --radius-base: 2px;
  --radius-button: 2px;
  --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 #262626 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #2E2E2E;
  --surface: #393939;
  --border: #4A4A4A;
  --text: #ECECEE;
  --text-muted: #A3A3A5;
  --primary: #2E180F;  /* a brand color — but the call-to-action uses #262626, not this. */
  --accent: #FF985C;  /* accent for emphasis — keep it rare on the page. */
  --link: #FF985C;  /* inline text links and link-styled controls. */
  --secondary: #4C100B;  /* 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: #262626;  /* primary-button fill — the main call-to-action color. */
  --button-text: #1A1A1A;
  --font-heading: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Sometype Mono", ui-monospace, monospace;
  --radius: 2px;
  --radius-button: 2px;
}
/* fonts: Manrope — free, on Google. */