MozaikaDesign system

Kodama Grove UI — Design System

light · modern · medium · react · confidence 95%

The Kodama Grove theme — a cohesive shadcn/ui design system (measured tokens).

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/kodama-grove-ui.

Tokens

Kodama Grove UI's decoded design system: background #E4D7B0, text #5C4B3E, accent #8D9D4F, link #8D9D4F, primary #8D9D4F; type scale h1 36px / h2 24px / body 14px; 4px spacing base; 7px base radius. The single interactive/action color is #8D9D4F — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#E4D7B0
surface#DBCEA9
border#CFC29E
text#5C4B3E
text_muted#8F8069
primary#8D9D4F
accent#8D9D4F
link#8D9D4F
button_bg#8D9D4F
button_text#FDFBF6

Using these colors

Typography

Spacing

Radii

Export: DESIGN.md

# Kodama Grove UI — Design System

> light, modern, medium, react

The Kodama Grove theme — a cohesive shadcn/ui design system (measured tokens).

## Colors

| Role | Value |
|------|-------|
| bg | `#E4D7B0` |
| surface | `#DBCEA9` |
| border | `#CFC29E` |
| text | `#5C4B3E` |
| text_muted | `#8F8069` |
| primary | `#8D9D4F` |
| accent | `#8D9D4F` |
| link | `#8D9D4F` |
| button_bg | `#8D9D4F` |
| button_text | `#FDFBF6` |

**Using these colors**

- **Action color** `#8D9D4F` — 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 `#8D9D4F` — one role, not several (your action color).
- **accent** `#8D9D4F` — 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: **Merriweather** _(free fallback: Newsreader)_
- Body: **Merriweather** _(free fallback: Newsreader)_
- h1: 36px
- h2: 24px
- body: 14px

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

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

## Radius
- base: 7px
- button: 7px

## Primary button
- bg `#8D9D4F` · text `#FDFBF6` · radius 7px

## 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.

---

> **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/kodama-grove-ui

Export: Tailwind v4 (@theme)

@theme {
  /* action color #8D9D4F — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #E4D7B0;
  --color-surface: #DBCEA9;
  --color-border: #CFC29E;
  --color-text: #5C4B3E;
  --color-text-muted: #8F8069;
  --color-primary: #8D9D4F;  /* primary brand / action color. */
  --color-accent: #8D9D4F;  /* 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: #8D9D4F;  /* inline text links — shares the action color. */
  --color-button-bg: #8D9D4F;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FDFBF6;
  /* fonts: Merriweather may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Merriweather", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Merriweather", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 36px;
  --text-h2: 24px;
  --text-body: 14px;
  --radius-base: 7px;
  --radius-button: 7px;
  --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 #8D9D4F — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #E4D7B0;
  --surface: #DBCEA9;
  --border: #CFC29E;
  --text: #5C4B3E;
  --text-muted: #8F8069;
  --primary: #8D9D4F;  /* primary brand / action color. */
  --accent: #8D9D4F;  /* 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: #8D9D4F;  /* inline text links — shares the action color. */
  --button-bg: #8D9D4F;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FDFBF6;
  --font-heading: "Merriweather", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Merriweather", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 7px;
  --radius-button: 7px;
}
/* fonts: Merriweather may be proprietary — safe free fallback: Newsreader (Google Fonts). */