Caraway — Design System
The full decoded design system for Caraway: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.
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/caraway.
Tokens
Caraway's decoded design system: background #FCFCF9, text #000000, accent #C12F28, link #C12F28, primary #1F3438; type scale h1 48px / h2 20px / body 14.4px; 4px spacing base; 3px base radius. The single interactive/action color is #1F3438 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FCFCF9 |
| surface | #ECECEA |
| border | #D6D6D3 |
| text | #000000 |
| text_muted | #5F5F5E |
| primary | #1F3438 |
| accent | #C12F28 |
| link | #C12F28 |
| secondary | #FBF3E0 |
| button_bg | #1F3438 |
| button_text | #FFFFFF |
Using these colors
- Action color
#1F3438— the single interactive color; only on things you click or must notice, never large fills. primary,button_bgare all#1F3438— one role, not several (the action color).accent,linkare all#C12F28— one role, not several (the action color).- accent
#C12F28— accent for emphasis — keep it rare on the page. - secondary
#FBF3E0— 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: Suisse Works
- Body: Moderat
- h1: 48px
- h2: 20px
- body: 14.4px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 3px
- button: 40px
Per-section tokens (8)
- Hero
- Gallery / Showcase
- Gallery / Showcase
- Banner
- Testimonial / Social Proof
- Feature
- Gallery / Showcase
- Footer
Export: DESIGN.md
# Caraway — Design System > light, modern, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#FCFCF9` | | surface | `#ECECEA` | | border | `#D6D6D3` | | text | `#000000` | | text_muted | `#5F5F5E` | | primary | `#1F3438` | | accent | `#C12F28` | | link | `#C12F28` | | secondary | `#FBF3E0` | | button_bg | `#1F3438` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#1F3438` — 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 `#1F3438` — one role, not several (your action color). - `accent`, `link` are all `#C12F28` — one role, not several. - **accent** `#C12F28` — accent for emphasis — keep it rare on the page. - **secondary** `#FBF3E0` — 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: **Suisse Works** _(free fallback: Newsreader)_ - Body: **Moderat** _(free fallback: Newsreader)_ - h1: 48px - h2: 20px - body: 14.4px > **Fonts —** Suisse Works may be proprietary — safe free fallback: Newsreader (Google Fonts). Moderat may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 3px - button: 40px ## Primary button - bg `#1F3438` · text `#FFFFFF` · radius 40px ## 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 #1F3438 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FCFCF9;
--color-surface: #ECECEA;
--color-border: #D6D6D3;
--color-text: #000000;
--color-text-muted: #5F5F5E;
--color-primary: #1F3438; /* primary brand / action color. */
--color-accent: #C12F28; /* accent for emphasis — keep it rare on the page. */
--color-link: #C12F28; /* inline text links and link-styled controls. */
--color-secondary: #FBF3E0; /* 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: #1F3438; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Suisse Works may be proprietary — safe free fallback: Newsreader (Google Fonts). Moderat may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Suisse Works", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Moderat", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 48px;
--text-h2: 20px;
--text-body: 14.4px;
--radius-base: 3px;
--radius-button: 40px;
--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 #1F3438 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FCFCF9;
--surface: #ECECEA;
--border: #D6D6D3;
--text: #000000;
--text-muted: #5F5F5E;
--primary: #1F3438; /* primary brand / action color. */
--accent: #C12F28; /* accent for emphasis — keep it rare on the page. */
--link: #C12F28; /* inline text links and link-styled controls. */
--secondary: #FBF3E0; /* 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: #1F3438; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Suisse Works", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Moderat", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 3px;
--radius-button: 40px;
}
/* fonts: Suisse Works may be proprietary — safe free fallback: Newsreader (Google Fonts). Moderat may be proprietary — safe free fallback: Newsreader (Google Fonts). */