Sana — Design System
The full decoded design system for Sana: 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/sana.
Tokens
Sana's decoded design system: background #FFFFFF, text #0A1217, accent #1A73E8, link #1A73E8, primary #FA8072; type scale h1 88px / h2 16px / body 13px; 4px spacing base; 8px base radius. The single interactive/action color is #0A1217 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F1 |
| border | #DADBDC |
| text | #0A1217 |
| text_muted | #676C6F |
| primary | #FA8072 |
| accent | #1A73E8 |
| link | #1A73E8 |
| secondary | #AADDFF |
| button_bg | #0A1217 |
| button_text | #FFFFFF |
Using these colors
- Action color
#0A1217— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#1A73E8— one role, not several (the action color).- accent
#1A73E8— accent for emphasis — keep it rare on the page. - primary
#FA8072— a brand color — but the call-to-action uses #0A1217, not this. - secondary
#AADDFF— 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: Sana Serif
- Body: Sana Sans
- h1: 88px
- h2: 16px
- body: 13px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 24px
Per-section tokens (4)
Export: DESIGN.md
# Sana — Design System > light, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F1` | | border | `#DADBDC` | | text | `#0A1217` | | text_muted | `#676C6F` | | primary | `#FA8072` | | accent | `#1A73E8` | | link | `#1A73E8` | | secondary | `#AADDFF` | | button_bg | `#0A1217` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#0A1217` — 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` are all `#1A73E8` — one role, not several. - **accent** `#1A73E8` — accent for emphasis — keep it rare on the page. - **primary** `#FA8072` — a brand color — but the call-to-action uses #0A1217, not this. - **secondary** `#AADDFF` — 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: **Sana Serif** _(free fallback: Newsreader)_ - Body: **Sana Sans** _(free fallback: Newsreader)_ - h1: 88px - h2: 16px - body: 13px > **Fonts —** Sana Serif may be proprietary — safe free fallback: Newsreader (Google Fonts). Sana Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 24px ## Primary button - bg `#0A1217` · text `#FFFFFF` · radius 24px ## 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 #0A1217 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F1;
--color-border: #DADBDC;
--color-text: #0A1217;
--color-text-muted: #676C6F;
--color-primary: #FA8072; /* a brand color — but the call-to-action uses #0A1217, not this. */
--color-accent: #1A73E8; /* accent for emphasis — keep it rare on the page. */
--color-link: #1A73E8; /* inline text links and link-styled controls. */
--color-secondary: #AADDFF; /* 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: #0A1217; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Sana Serif may be proprietary — safe free fallback: Newsreader (Google Fonts). Sana Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Sana Serif", "Newsreader", Georgia, 'Times New Roman', serif;
--font-body: "Sana Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 88px;
--text-h2: 16px;
--text-body: 13px;
--radius-base: 8px;
--radius-button: 24px;
--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 #0A1217 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F1;
--border: #DADBDC;
--text: #0A1217;
--text-muted: #676C6F;
--primary: #FA8072; /* a brand color — but the call-to-action uses #0A1217, not this. */
--accent: #1A73E8; /* accent for emphasis — keep it rare on the page. */
--link: #1A73E8; /* inline text links and link-styled controls. */
--secondary: #AADDFF; /* 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: #0A1217; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Sana Serif", "Newsreader", Georgia, 'Times New Roman', serif;
--font-body: "Sana Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 24px;
}
/* fonts: Sana Serif may be proprietary — safe free fallback: Newsreader (Google Fonts). Sana Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */