Whimsical — Design System
The full decoded design system for Whimsical: 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/whimsical.
Tokens
Whimsical's decoded design system: background #F7F7F8, text #0A0A0B, accent #250835, link #250835, primary #E9BDED; type scale h1 32px / h2 48px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #250835 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F7F7F8 |
| surface | #E8E8E9 |
| border | #D3D3D4 |
| text | #0A0A0B |
| text_muted | #646465 |
| primary | #E9BDED |
| accent | #250835 |
| link | #250835 |
| secondary | #AB2FED |
| button_bg | #250835 |
| button_text | #FFFFFF |
Using these colors
- Action color
#250835— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#250835— one role, not several (the action color).- accent
#250835— 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. - primary
#E9BDED— a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #250835). - secondary
#AB2FED— 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: Agrandir
- Body: Manrope
- h1: 32px
- h2: 48px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 12px
Shadow
rgba(37, 8, 53, 0.2) 0px 12px 16px -4px
Per-section tokens (9)
Export: DESIGN.md
# Whimsical — Design System > light, playful, high, custom ## Colors | Role | Value | |------|-------| | bg | `#F7F7F8` | | surface | `#E8E8E9` | | border | `#D3D3D4` | | text | `#0A0A0B` | | text_muted | `#646465` | | primary | `#E9BDED` | | accent | `#250835` | | link | `#250835` | | secondary | `#AB2FED` | | button_bg | `#250835` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#250835` — 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`, `button_bg` are all `#250835` — one role, not several (your action color). - **accent** `#250835` — 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. - **primary** `#E9BDED` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #250835). - **secondary** `#AB2FED` — 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: **Agrandir** _(free fallback: Newsreader)_ - Body: **Manrope** - h1: 32px - h2: 48px - body: 16px > **Fonts —** Agrandir may be proprietary — safe free fallback: Newsreader (Google Fonts). Manrope — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 12px ## Primary button - bg `#250835` · text `#FFFFFF` · radius 12px ## 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 #250835 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F7F7F8;
--color-surface: #E8E8E9;
--color-border: #D3D3D4;
--color-text: #0A0A0B;
--color-text-muted: #646465;
--color-primary: #E9BDED; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #250835). */
--color-accent: #250835; /* 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: #250835; /* inline text links — shares the action color. */
--color-secondary: #AB2FED; /* 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: #250835; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Agrandir may be proprietary — safe free fallback: Newsreader (Google Fonts). Manrope — free, on Google. */
--font-heading: "Agrandir", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 32px;
--text-h2: 48px;
--text-body: 16px;
--radius-base: 8px;
--radius-button: 12px;
--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 #250835 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F7F7F8;
--surface: #E8E8E9;
--border: #D3D3D4;
--text: #0A0A0B;
--text-muted: #646465;
--primary: #E9BDED; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #250835). */
--accent: #250835; /* 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: #250835; /* inline text links — shares the action color. */
--secondary: #AB2FED; /* 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: #250835; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Agrandir", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 12px;
}
/* fonts: Agrandir may be proprietary — safe free fallback: Newsreader (Google Fonts). Manrope — free, on Google. */