Neutral Templates — Design System
A cohesive open-source template design system — minimal light theme with Figtree 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/neutral-templates.
Tokens
Neutral Templates's decoded design system: background #f1f1f1, text #171717, accent #262626, link #262626, primary #171717; type scale h1 24px / h2 20px / body 14px; 4px spacing base; 10px base radius. The single interactive/action color is #262626 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #f1f1f1 |
| surface | #E3E3E3 |
| border | #D0D0D0 |
| text | #171717 |
| text_muted | #696969 |
| primary | #171717 |
| accent | #262626 |
| link | #262626 |
| secondary | #ffffff |
| button_bg | #262626 |
| button_text | #FFFFFF |
Using these colors
- Action color
#262626— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#262626— one role, not several (the action color).- accent
#262626— 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
#171717— ≈ the text color — a foreground/text color, not an action color (action = #262626). - 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: Figtree
- Body: Figtree
- h1: 24px
- h2: 20px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 10px
- button: 10px
Motion
Micro-interactions run at 125ms (dominant).
- durations: 125ms · 300ms
Per-section tokens (4)
Export: DESIGN.md
# Neutral Templates — Design System > light, minimal, calm, react A cohesive open-source template design system — minimal light theme with Figtree headings. ## Colors | Role | Value | |------|-------| | bg | `#f1f1f1` | | surface | `#E3E3E3` | | border | `#D0D0D0` | | text | `#171717` | | text_muted | `#696969` | | primary | `#171717` | | accent | `#262626` | | link | `#262626` | | secondary | `#ffffff` | | button_bg | `#262626` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#262626` — 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 `#262626` — one role, not several (your action color). - **accent** `#262626` — 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** `#171717` — ≈ the text color — a foreground/text color, not an action color (action = #262626). - **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: **Figtree** - Body: **Figtree** - h1: 24px - h2: 20px - body: 14px > **Fonts —** Figtree — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 10px - button: 10px ## Primary button - bg `#262626` · text `#FFFFFF` · radius 10px ## 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/neutral-templates
Export: Tailwind v4 (@theme)
@theme {
/* action color #262626 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #f1f1f1;
--color-surface: #E3E3E3;
--color-border: #D0D0D0;
--color-text: #171717;
--color-text-muted: #696969;
--color-primary: #171717; /* ≈ the text color — a foreground/text color, not an action color (action = #262626). */
--color-accent: #262626; /* 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: #262626; /* 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: #262626; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Figtree — free, on Google. */
--font-heading: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 24px;
--text-h2: 20px;
--text-body: 14px;
--radius-base: 10px;
--radius-button: 10px;
--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 #262626 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #f1f1f1;
--surface: #E3E3E3;
--border: #D0D0D0;
--text: #171717;
--text-muted: #696969;
--primary: #171717; /* ≈ the text color — a foreground/text color, not an action color (action = #262626). */
--accent: #262626; /* 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: #262626; /* 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: #262626; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 10px;
--radius-button: 10px;
--duration-fast: 125ms;
--duration-base: 300ms;
}
/* fonts: Figtree — free, on Google. */