Sanity — Design System
Sanity goes boldest-in-class: Waldenburg at a monumental 112px/400 fills the viewport with structured-content manifestos, while IBM Plex Mono buttons in display-P3 orange pills inject engineering wit. White space is used at print-poster scale and code blocks sit beside editorial type as equals — a headless CMS arguing, in 112 pixels, that content is architecture.
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/sanity.
Tokens
Sanity's decoded design system: background #FFFFFF, text #0B0B0B, accent #FF4100, link #0052EF, primary #FF4100; type scale h1 112px / h2 72px / body 18px; 4px spacing base; 5px base radius. The single interactive/action color is #FF4100 — 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 | #DADADA |
| text | #0B0B0B |
| text_muted | #676767 |
| primary | #FF4100 |
| accent | #FF4100 |
| link | #0052EF |
| secondary | #CCD6DD |
| button_bg | #FF4100 |
| button_text | #0B0B0B |
Using these colors
- Action color
#FF4100— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#FF4100— one role, not several (the action color).- accent
#FF4100— 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
#0052EF— inline text links and link-styled controls. - secondary
#CCD6DD— 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: Waldenburg
- Body: Waldenburg
- h1: 112px
- h2: 72px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 5px
- button: 9999px
Per-section tokens (16)
- Hero
- Hero
- Logo Wall
- Feature
- Feature
- Logo Wall
- Feature
- Comparison
- Feature
- Testimonial / Social Proof
- Feature
- FAQ
- Stats / Metrics
- CTA / Sign-up
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Sanity — Design System > light, modern, high, tailwind Sanity goes boldest-in-class: Waldenburg at a monumental 112px/400 fills the viewport with structured-content manifestos, while IBM Plex Mono buttons in display-P3 orange pills inject engineering wit. White space is used at print-poster scale and code blocks sit beside editorial type as equals — a headless CMS arguing, in 112 pixels, that content is architecture. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#DADADA` | | text | `#0B0B0B` | | text_muted | `#676767` | | primary | `#FF4100` | | accent | `#FF4100` | | link | `#0052EF` | | secondary | `#CCD6DD` | | button_bg | `#FF4100` | | button_text | `#0B0B0B` | **Using these colors** - **Action color** `#FF4100` — 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`, `button_bg` are all `#FF4100` — one role, not several (your action color). - **accent** `#FF4100` — 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** `#0052EF` — inline text links and link-styled controls. - **secondary** `#CCD6DD` — 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: **Waldenburg** _(free fallback: Newsreader)_ - Body: **Waldenburg** _(free fallback: Newsreader)_ - h1: 112px - h2: 72px - body: 18px > **Fonts —** Waldenburg may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 5px - button: 9999px ## Primary button - bg `#FF4100` · text `#0B0B0B` · radius 9999px ## 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 #FF4100 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DADADA;
--color-text: #0B0B0B;
--color-text-muted: #676767;
--color-primary: #FF4100; /* primary brand / action color. */
--color-accent: #FF4100; /* 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: #0052EF; /* inline text links and link-styled controls. */
--color-secondary: #CCD6DD; /* 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: #FF4100; /* primary-button fill — the main call-to-action color. */
--color-button-text: #0B0B0B;
/* fonts: Waldenburg may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Waldenburg", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Waldenburg", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 112px;
--text-h2: 72px;
--text-body: 18px;
--radius-base: 5px;
--radius-button: 9999px;
--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 #FF4100 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DADADA;
--text: #0B0B0B;
--text-muted: #676767;
--primary: #FF4100; /* primary brand / action color. */
--accent: #FF4100; /* 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: #0052EF; /* inline text links and link-styled controls. */
--secondary: #CCD6DD; /* 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: #FF4100; /* primary-button fill — the main call-to-action color. */
--button-text: #0B0B0B;
--font-heading: "Waldenburg", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Waldenburg", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 5px;
--radius-button: 9999px;
}
/* fonts: Waldenburg may be proprietary — safe free fallback: Newsreader (Google Fonts). */