MozaikaDesign system

Stone Templates — Design System

light · professional · calm · react · confidence 95%

A cohesive open-source template design system — professional light theme with Montserrat headings.

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/stone-templates.

Tokens

Stone Templates's decoded design system: background #f3f3f5, text #25252a, accent #25252a, link #25252a, primary #25252a; type scale h1 27px / h2 22px / body 14px; 4px spacing base; 8px base radius. The single interactive/action color is #25252a — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#f3f3f5
surface#E6E6E8
border#D4D4D6
text#25252a
text_muted#737377
primary#25252a
accent#25252a
link#25252a
secondary#ffffff
button_bg#25252a
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Motion

Micro-interactions run at 125ms (dominant).

Per-section tokens (3)

Export: DESIGN.md

# Stone Templates — Design System

> light, professional, calm, react

A cohesive open-source template design system — professional light theme with Montserrat headings.

## Colors

| Role | Value |
|------|-------|
| bg | `#f3f3f5` |
| surface | `#E6E6E8` |
| border | `#D4D4D6` |
| text | `#25252a` |
| text_muted | `#737377` |
| primary | `#25252a` |
| accent | `#25252a` |
| link | `#25252a` |
| secondary | `#ffffff` |
| button_bg | `#25252a` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#25252a` — 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 `#25252a` — one role, not several (your action color).
- **accent** `#25252a` — 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: **Montserrat**
- Body: **Figtree**
- h1: 27px
- h2: 22px
- body: 14px

> **Fonts —** Montserrat — free, on Google. Figtree — free, on Google.

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

## Radius
- base: 8px
- button: 8px

## Primary button
- bg `#25252a` · text `#FFFFFF` · radius 8px

## 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/stone-templates

Export: Tailwind v4 (@theme)

@theme {
  /* action color #25252a — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #f3f3f5;
  --color-surface: #E6E6E8;
  --color-border: #D4D4D6;
  --color-text: #25252a;
  --color-text-muted: #737377;
  --color-primary: #25252a;  /* ≈ the text color — a foreground/text color, not an action color (action = #25252a). */
  --color-accent: #25252a;  /* 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: #25252a;  /* 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: #25252a;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Montserrat — free, on Google. Figtree — free, on Google. */
  --font-heading: "Montserrat", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 27px;
  --text-h2: 22px;
  --text-body: 14px;
  --radius-base: 8px;
  --radius-button: 8px;
  --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 #25252a — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #f3f3f5;
  --surface: #E6E6E8;
  --border: #D4D4D6;
  --text: #25252a;
  --text-muted: #737377;
  --primary: #25252a;  /* ≈ the text color — a foreground/text color, not an action color (action = #25252a). */
  --accent: #25252a;  /* 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: #25252a;  /* 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: #25252a;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Montserrat", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 8px;
  --duration-fast: 125ms;
  --duration-base: 300ms;
}
/* fonts: Montserrat — free, on Google. Figtree — free, on Google. */