MozaikaDesign system

Fireworks AI — Design System

dark · modern · high · tailwind · confidence 92%

The full decoded design system for Fireworks AI: 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/fireworks-ai.

Tokens

Fireworks AI's decoded design system: background #000000, text #ECECEE, accent #6726FE, link #6726FE, primary #6726FE; type scale h1 48px / h2 36px / body 16px; 4px spacing base; 0px base radius. The single interactive/action color is #6726FE — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#000000
surface#0E0E0E
border#232323
text#ECECEE
text_muted#929293
primary#6726FE
accent#6726FE
link#6726FE
button_bg#6726FE
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (11)

Export: DESIGN.md

# Fireworks AI — Design System

> dark, modern, high, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#000000` |
| surface | `#0E0E0E` |
| border | `#232323` |
| text | `#ECECEE` |
| text_muted | `#929293` |
| primary | `#6726FE` |
| accent | `#6726FE` |
| link | `#6726FE` |
| button_bg | `#6726FE` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#6726FE` — 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`, `link`, `button_bg` are all `#6726FE` — one role, not several (your action color).
- **accent** `#6726FE` — 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.

## Typography

- Heading: **Favorit** _(free fallback: Newsreader)_
- Body: **Inter**
- h1: 48px
- h2: 36px
- body: 16px

> **Fonts —** Favorit may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google.

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

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

## Primary button
- bg `#6726FE` · text `#FFFFFF` · radius 0px

## 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 #6726FE — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #000000;
  --color-surface: #0E0E0E;
  --color-border: #232323;
  --color-text: #ECECEE;
  --color-text-muted: #929293;
  --color-primary: #6726FE;  /* primary brand / action color. */
  --color-accent: #6726FE;  /* 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: #6726FE;  /* inline text links — shares the action color. */
  --color-button-bg: #6726FE;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Favorit may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */
  --font-heading: "Favorit", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 48px;
  --text-h2: 36px;
  --text-body: 16px;
  --radius-base: 0px;
  --radius-button: 0px;
  --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 #6726FE — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #000000;
  --surface: #0E0E0E;
  --border: #232323;
  --text: #ECECEE;
  --text-muted: #929293;
  --primary: #6726FE;  /* primary brand / action color. */
  --accent: #6726FE;  /* 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: #6726FE;  /* inline text links — shares the action color. */
  --button-bg: #6726FE;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Favorit", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 0px;
}
/* fonts: Favorit may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */