MozaikaDesign system

Granola — Design System

light · modern · medium · tailwind · confidence 92%

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

Tokens

Granola's decoded design system: background #FFFFFF, text #292929, accent #22C55E, link #22C55E, primary #5B6F00; type scale h1 110px / h2 160px / body 14px; 4px spacing base; 12px base radius. The single interactive/action color is #5B6F00 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F2F2F2
border#DEDEDE
text#292929
text_muted#7A7A7A
primary#5B6F00
accent#22C55E
link#22C55E
secondary#DDEEDD
button_bg#5B6F00
button_text#FCFCF8

Using these colors

Typography

Spacing

Radii

Per-section tokens (10)

Export: DESIGN.md

# Granola — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F2F2F2` |
| border | `#DEDEDE` |
| text | `#292929` |
| text_muted | `#7A7A7A` |
| primary | `#5B6F00` |
| accent | `#22C55E` |
| link | `#22C55E` |
| secondary | `#DDEEDD` |
| button_bg | `#5B6F00` |
| button_text | `#FCFCF8` |

**Using these colors**

- **Action color** `#5B6F00` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary`, `button_bg` are all `#5B6F00` — one role, not several (your action color).
- `accent`, `link` are all `#22C55E` — one role, not several.
- **accent** `#22C55E` — accent for emphasis — keep it rare on the page.
- **secondary** `#DDEEDD` — 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: **Quadrant** _(free fallback: Newsreader)_
- Body: **Melange** _(free fallback: Newsreader)_
- h1: 110px
- h2: 160px
- body: 14px

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

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

## Radius
- base: 12px
- button: 9999px

## Primary button
- bg `#5B6F00` · text `#FCFCF8` · radius 9999px

## 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 #5B6F00 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F2F2F2;
  --color-border: #DEDEDE;
  --color-text: #292929;
  --color-text-muted: #7A7A7A;
  --color-primary: #5B6F00;  /* primary brand / action color. */
  --color-accent: #22C55E;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #22C55E;  /* fails contrast on the background (~2.3: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: #DDEEDD;  /* 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: #5B6F00;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FCFCF8;
  /* fonts: Quadrant may be proprietary — safe free fallback: Newsreader (Google Fonts). Melange may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Quadrant", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Melange", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 110px;
  --text-h2: 160px;
  --text-body: 14px;
  --radius-base: 12px;
  --radius-button: 9999px;
  --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 #5B6F00 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F2F2F2;
  --border: #DEDEDE;
  --text: #292929;
  --text-muted: #7A7A7A;
  --primary: #5B6F00;  /* primary brand / action color. */
  --accent: #22C55E;  /* accent for emphasis — keep it rare on the page. */
  --link: #22C55E;  /* fails contrast on the background (~2.3:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #DDEEDD;  /* 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: #5B6F00;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FCFCF8;
  --font-heading: "Quadrant", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Melange", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-button: 9999px;
}
/* fonts: Quadrant may be proprietary — safe free fallback: Newsreader (Google Fonts). Melange may be proprietary — safe free fallback: Newsreader (Google Fonts). */