MozaikaDesign system

Dinamo — Design System

light · modern · medium · custom · confidence 92%

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

Tokens

Dinamo's decoded design system: background #FFFFFF, text #000000, accent #FFEA00, link #FFEA00, primary #0052FF; type scale h1 77.76px / h2 31.68px / body 46.08px; 10px spacing base; 0px base radius. The single interactive/action color is #FFEA00 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#EFEFEF
border#D8D8D8
text#000000
text_muted#606060
primary#0052FF
accent#FFEA00
link#FFEA00
button_bg#FFEA00
button_text#000000

Using these colors

Typography

Spacing

Radii

Per-section tokens (10)

Export: DESIGN.md

# Dinamo — Design System

> light, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#EFEFEF` |
| border | `#D8D8D8` |
| text | `#000000` |
| text_muted | `#606060` |
| primary | `#0052FF` |
| accent | `#FFEA00` |
| link | `#FFEA00` |
| button_bg | `#FFEA00` |
| button_text | `#000000` |

**Using these colors**

- **Action color** `#FFEA00` — 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`, `button_bg` are all `#FFEA00` — one role, not several (your action color).
- **accent** `#FFEA00` — 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.
- **primary** `#0052FF` — a brand color — but the call-to-action uses #FFEA00, not this.

## Typography

- Heading: **Monument Grotesk** _(free fallback: Newsreader)_
- Body: **Helvetica Neue**
- h1: 77.76px
- h2: 31.68px
- body: 46.08px

> **Fonts —** Monument Grotesk may be proprietary — safe free fallback: Newsreader (Google Fonts). Helvetica Neue — system font, no web load needed.

## Spacing
- base unit: 10px
- scale: 5px, 10px, 15px, 20px, 30px, 40px, 60px, 80px

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

## Primary button
- bg `#FFEA00` · text `#000000` · 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 #FFEA00 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #EFEFEF;
  --color-border: #D8D8D8;
  --color-text: #000000;
  --color-text-muted: #606060;
  --color-primary: #0052FF;  /* a brand color — but the call-to-action uses #FFEA00, not this. */
  --color-accent: #FFEA00;  /* 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: #FFEA00;  /* inline text links — shares the action color. */
  --color-button-bg: #FFEA00;  /* 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). Helvetica Neue — system font, no web load needed. */
  --font-heading: "Monument Grotesk", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Helvetica Neue", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 77.76px;
  --text-h2: 31.68px;
  --text-body: 46.08px;
  --radius-base: 0px;
  --radius-button: 0px;
  --spacing-1: 5px;
  --spacing-2: 10px;
  --spacing-3: 15px;
  --spacing-4: 20px;
  --spacing-5: 30px;
  --spacing-6: 40px;
  --spacing-7: 60px;
  --spacing-8: 80px;
}

Export: CSS variables

:root {
  /* action color #FFEA00 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #EFEFEF;
  --border: #D8D8D8;
  --text: #000000;
  --text-muted: #606060;
  --primary: #0052FF;  /* a brand color — but the call-to-action uses #FFEA00, not this. */
  --accent: #FFEA00;  /* 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: #FFEA00;  /* inline text links — shares the action color. */
  --button-bg: #FFEA00;  /* 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: "Helvetica Neue", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 0px;
}
/* fonts: Monument Grotesk may be proprietary — safe free fallback: Newsreader (Google Fonts). Helvetica Neue — system font, no web load needed. */