MozaikaDesign system

Zora — Design System

light · modern · high · custom · confidence 92%

Zora is pure app-scale: Monument Grotesk at feed sizes (17-24px), 8px-radius ink buttons, and a live grid of coined posts doing all the visual work. The marketing site IS the product surface — creator tokens trade in-page, prices tick live, and the chrome stays gallery-white so the minted media carries the brand.

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

Tokens

Zora's decoded design system: background #FFFFFF, text #4D4D4D, accent #00DF00, link #9D968E, primary #00DF00; type scale h1 24px / h2 17px / body 14px; 4px spacing base; 6px base radius. The single interactive/action color is #00DF00 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F4F4F4
border#E4E4E4
text#4D4D4D
text_muted#909090
primary#00DF00
accent#00DF00
link#9D968E
secondary#FF4847
button_bg#00DF00
button_text#000000

Using these colors

Typography

Spacing

Radii

Per-section tokens (8)

Export: DESIGN.md

# Zora — Design System

> light, modern, high, custom

Zora is pure app-scale: Monument Grotesk at feed sizes (17-24px), 8px-radius ink buttons, and a live grid of coined posts doing all the visual work. The marketing site IS the product surface — creator tokens trade in-page, prices tick live, and the chrome stays gallery-white so the minted media carries the brand.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F4F4F4` |
| border | `#E4E4E4` |
| text | `#4D4D4D` |
| text_muted | `#909090` |
| primary | `#00DF00` |
| accent | `#00DF00` |
| link | `#9D968E` |
| secondary | `#FF4847` |
| button_bg | `#00DF00` |
| button_text | `#000000` |

**Using these colors**

- **Action color** `#00DF00` — 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 `#00DF00` — one role, not several (your action color).
- **accent** `#00DF00` — 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** `#9D968E` — fails contrast on the background (~2.9:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
- **secondary** `#FF4847` — 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: **Monument Grotesk** _(free fallback: Newsreader)_
- Body: **Monument Grotesk** _(free fallback: Newsreader)_
- h1: 24px
- h2: 17px
- body: 14px

> **Fonts —** Monument Grotesk may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

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

## Primary button
- bg `#00DF00` · text `#000000` · 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 #00DF00 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F4F4F4;
  --color-border: #E4E4E4;
  --color-text: #4D4D4D;
  --color-text-muted: #909090;
  --color-primary: #00DF00;  /* primary brand / action color. */
  --color-accent: #00DF00;  /* 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: #9D968E;  /* fails contrast on the background (~2.9:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-secondary: #FF4847;  /* 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: #00DF00;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #000000;
  /* fonts: Monument Grotesk may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Monument Grotesk", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Monument Grotesk", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 24px;
  --text-h2: 17px;
  --text-body: 14px;
  --radius-base: 6px;
  --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 #00DF00 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F4F4F4;
  --border: #E4E4E4;
  --text: #4D4D4D;
  --text-muted: #909090;
  --primary: #00DF00;  /* primary brand / action color. */
  --accent: #00DF00;  /* 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: #9D968E;  /* fails contrast on the background (~2.9:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #FF4847;  /* 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: #00DF00;  /* primary-button fill — the main call-to-action color. */
  --button-text: #000000;
  --font-heading: "Monument Grotesk", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Monument Grotesk", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 6px;
  --radius-button: 8px;
}
/* fonts: Monument Grotesk may be proprietary — safe free fallback: Newsreader (Google Fonts). */