MozaikaDesign system

Prisma — Design System

light · modern · medium · tailwind · confidence 92%

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

Tokens

Prisma's decoded design system: background #FFFFFF, text #1D242F, accent #14B8A6, link #1D242F, primary #14B8A6; type scale h1 52px / h2 36px / body 18px; 4px spacing base; 8px base radius. The single interactive/action color is #14B8A6 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F1F1F2
border#DDDEDF
text#1D242F
text_muted#72777E
primary#14B8A6
accent#14B8A6
link#1D242F
secondary#6B7280
button_bg#14B8A6
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Shadow

rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.04) 0px 1px 2px 0px

Per-section tokens (9)

Export: DESIGN.md

# Prisma — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F1F1F2` |
| border | `#DDDEDF` |
| text | `#1D242F` |
| text_muted | `#72777E` |
| primary | `#14B8A6` |
| accent | `#14B8A6` |
| link | `#1D242F` |
| secondary | `#6B7280` |
| button_bg | `#14B8A6` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#14B8A6` — 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 `#14B8A6` — one role, not several (your action color).
- **accent** `#14B8A6` — 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** `#1D242F` — inline text links and link-styled controls.
- **secondary** `#6B7280` — 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: **Inter**
- Body: **Inter**
- h1: 52px
- h2: 36px
- body: 18px

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

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

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

## Primary button
- bg `#14B8A6` · text `#FFFFFF` · radius 6px

## 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 #14B8A6 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F1F1F2;
  --color-border: #DDDEDF;
  --color-text: #1D242F;
  --color-text-muted: #72777E;
  --color-primary: #14B8A6;  /* primary brand / action color. */
  --color-accent: #14B8A6;  /* 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: #1D242F;  /* inline text links and link-styled controls. */
  --color-secondary: #6B7280;  /* 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: #14B8A6;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Inter — free, on Google. */
  --font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 52px;
  --text-h2: 36px;
  --text-body: 18px;
  --radius-base: 8px;
  --radius-button: 6px;
  --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 #14B8A6 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F1F1F2;
  --border: #DDDEDF;
  --text: #1D242F;
  --text-muted: #72777E;
  --primary: #14B8A6;  /* primary brand / action color. */
  --accent: #14B8A6;  /* 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: #1D242F;  /* inline text links and link-styled controls. */
  --secondary: #6B7280;  /* 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: #14B8A6;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 6px;
}
/* fonts: Inter — free, on Google. */