Matcha Templates — Design System
A cohesive open-source template design system — organic light theme with Playwrite US Trad headings.
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/matcha-templates.
Tokens
Matcha Templates's decoded design system: background #F0F0E0, text #3E481D, accent #3E481D, link #3E481D, primary #3E481D; type scale h1 31px / h2 25px / body 16px; 4px spacing base; 12px base radius. The single interactive/action color is #3E481D — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F0F0E0 |
| surface | #E5E5D4 |
| border | #D5D6C2 |
| text | #3E481D |
| text_muted | #818767 |
| primary | #3E481D |
| accent | #3E481D |
| link | #3E481D |
| secondary | #FFFFFF |
| button_bg | #3E481D |
| button_text | #FFFFFF |
Using these colors
- Action color
#3E481D— the single interactive color; only on things you click or must notice, never large fills. primary,accent,link,button_bgare all#3E481D— one role, not several (the action color).- accent
#3E481D— 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. - secondary
#FFFFFF— 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: Playwrite US Trad
- Body: DM Sans
- h1: 31px
- h2: 25px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 12px
- button: 12px
Motion
Micro-interactions run at 125ms (dominant).
- durations: 125ms · 300ms
Per-section tokens (2)
Export: DESIGN.md
# Matcha Templates — Design System > light, organic, calm, react A cohesive open-source template design system — organic light theme with Playwrite US Trad headings. ## Colors | Role | Value | |------|-------| | bg | `#F0F0E0` | | surface | `#E5E5D4` | | border | `#D5D6C2` | | text | `#3E481D` | | text_muted | `#818767` | | primary | `#3E481D` | | accent | `#3E481D` | | link | `#3E481D` | | secondary | `#FFFFFF` | | button_bg | `#3E481D` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#3E481D` — 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 `#3E481D` — one role, not several (your action color). - **accent** `#3E481D` — 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. - **secondary** `#FFFFFF` — 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: **Playwrite US Trad** _(free fallback: Newsreader)_ - Body: **DM Sans** - h1: 31px - h2: 25px - body: 16px > **Fonts —** Playwrite US Trad may be proprietary — safe free fallback: Newsreader (Google Fonts). DM Sans — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 12px - button: 12px ## Primary button - bg `#3E481D` · text `#FFFFFF` · radius 12px ## Motion - durations: 125ms (dominant) · 300ms Micro-interactions use the dominant duration + easing; nothing on the page animates slower than the longest duration above — don't invent springier motion. ## 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/matcha-templates
Export: Tailwind v4 (@theme)
@theme {
/* action color #3E481D — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F0F0E0;
--color-surface: #E5E5D4;
--color-border: #D5D6C2;
--color-text: #3E481D;
--color-text-muted: #818767;
--color-primary: #3E481D; /* ≈ the text color — a foreground/text color, not an action color (action = #3E481D). */
--color-accent: #3E481D; /* 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: #3E481D; /* inline text links — shares the action color. */
--color-secondary: #FFFFFF; /* 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: #3E481D; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Playwrite US Trad may be proprietary — safe free fallback: Newsreader (Google Fonts). DM Sans — free, on Google. */
--font-heading: "Playwrite US Trad", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "DM Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 31px;
--text-h2: 25px;
--text-body: 16px;
--radius-base: 12px;
--radius-button: 12px;
--duration-fast: 125ms; /* use: duration-[var(--duration-fast)] */
--duration-base: 300ms;
--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 #3E481D — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F0F0E0;
--surface: #E5E5D4;
--border: #D5D6C2;
--text: #3E481D;
--text-muted: #818767;
--primary: #3E481D; /* ≈ the text color — a foreground/text color, not an action color (action = #3E481D). */
--accent: #3E481D; /* 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: #3E481D; /* inline text links — shares the action color. */
--secondary: #FFFFFF; /* 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: #3E481D; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Playwrite US Trad", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "DM Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 12px;
--radius-button: 12px;
--duration-fast: 125ms;
--duration-base: 300ms;
}
/* fonts: Playwrite US Trad may be proprietary — safe free fallback: Newsreader (Google Fonts). DM Sans — free, on Google. */