Away — Design System
The full decoded design system for Away: 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/away.
Tokens
Away's decoded design system: background #FFFFFF, text #111111, accent #FA4519, link #C0A42B, primary #FA4519; type scale h1 56px / h2 16px / body 14px; 4px spacing base; 3px base radius. The single interactive/action color is #FFFFFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F0 |
| border | #DBDBDB |
| text | #111111 |
| text_muted | #6B6B6B |
| primary | #FA4519 |
| accent | #FA4519 |
| link | #C0A42B |
| secondary | #585D47 |
| button_bg | #FFFFFF |
| button_text | #111111 |
Using these colors
- Action color
#FFFFFF— the single interactive color; only on things you click or must notice, never large fills. primary,accentare all#FA4519— one role, not several (the action color).- accent
#FA4519— accent for emphasis — keep it rare on the page. - link
#C0A42B— fails contrast on the background (~2.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - secondary
#585D47— 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: Lyon Display
- Body: Graphik
- h1: 56px
- h2: 16px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 3px
- button: 0px
Per-section tokens (10)
- Hero
- Gallery / Showcase
- Gallery / Showcase
- Feature
- Gallery / Showcase
- Banner
- Testimonial / Social Proof
- Feature
- Gallery / Showcase
- Footer
Export: DESIGN.md
# Away — Design System > light, modern, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#DBDBDB` | | text | `#111111` | | text_muted | `#6B6B6B` | | primary | `#FA4519` | | accent | `#FA4519` | | link | `#C0A42B` | | secondary | `#585D47` | | button_bg | `#FFFFFF` | | button_text | `#111111` | **Using these colors** - **Action color** `#FFFFFF` — 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` are all `#FA4519` — one role, not several. - **accent** `#FA4519` — accent for emphasis — keep it rare on the page. - **link** `#C0A42B` — fails contrast on the background (~2.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - **secondary** `#585D47` — 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: **Lyon Display** _(free fallback: Newsreader)_ - Body: **Graphik** _(free fallback: Inter)_ - h1: 56px - h2: 16px - body: 14px > **Fonts —** Lyon Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Graphik is proprietary — closest free match: Inter (Google). Load Inter; keep Graphik first so licensed users still get it. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 3px - button: 0px ## Primary button - bg `#FFFFFF` · text `#111111` · radius 0px ## 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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DBDBDB;
--color-text: #111111;
--color-text-muted: #6B6B6B;
--color-primary: #FA4519; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--color-accent: #FA4519; /* accent for emphasis — keep it rare on the page. */
--color-link: #C0A42B; /* fails contrast on the background (~2.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--color-secondary: #585D47; /* 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: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #111111;
/* fonts: Lyon Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Graphik is proprietary — closest free match: Inter (Google). Load Inter; keep Graphik first so licensed users still get it. */
--font-heading: "Lyon Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Graphik", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 56px;
--text-h2: 16px;
--text-body: 14px;
--radius-base: 3px;
--radius-button: 0px;
--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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DBDBDB;
--text: #111111;
--text-muted: #6B6B6B;
--primary: #FA4519; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--accent: #FA4519; /* accent for emphasis — keep it rare on the page. */
--link: #C0A42B; /* fails contrast on the background (~2.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #585D47; /* 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: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--button-text: #111111;
--font-heading: "Lyon Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Graphik", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 3px;
--radius-button: 0px;
}
/* fonts: Lyon Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Graphik is proprietary — closest free match: Inter (Google). Load Inter; keep Graphik first so licensed users still get it. */