Pastel Dreams UI — Design System
The Pastel Dreams theme — a cohesive shadcn/ui design system (measured tokens).
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/pastel-dreams-ui.
Tokens
Pastel Dreams UI's decoded design system: background #F7F3F9, text #374151, accent #A78BFA, link #A78BFA, primary #A78BFA; type scale h1 36px / h2 24px / body 14px; 4px spacing base; 24px base radius. The single interactive/action color is #A78BFA — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F7F3F9 |
| surface | #EBE8EE |
| border | #DAD8DF |
| text | #374151 |
| text_muted | #7F8490 |
| primary | #A78BFA |
| accent | #A78BFA |
| link | #A78BFA |
| button_bg | #A78BFA |
| button_text | #FFFFFF |
Using these colors
- Action color
#A78BFA— the single interactive color; only on things you click or must notice, never large fills. primary,accent,link,button_bgare all#A78BFA— one role, not several (the action color).- accent
#A78BFA— 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.
Typography
- Heading: Open Sans
- Body: Open Sans
- h1: 36px
- h2: 24px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 24px
- button: 24px
Export: DESIGN.md
# Pastel Dreams UI — Design System > light, modern, medium, react The Pastel Dreams theme — a cohesive shadcn/ui design system (measured tokens). ## Colors | Role | Value | |------|-------| | bg | `#F7F3F9` | | surface | `#EBE8EE` | | border | `#DAD8DF` | | text | `#374151` | | text_muted | `#7F8490` | | primary | `#A78BFA` | | accent | `#A78BFA` | | link | `#A78BFA` | | button_bg | `#A78BFA` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#A78BFA` — 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`, `link`, `button_bg` are all `#A78BFA` — one role, not several (your action color). - **accent** `#A78BFA` — 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. ## Typography - Heading: **Open Sans** _(free fallback: Newsreader)_ - Body: **Open Sans** _(free fallback: Newsreader)_ - h1: 36px - h2: 24px - body: 14px > **Fonts —** Open 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: 24px - button: 24px ## Primary button - bg `#A78BFA` · 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. --- > **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/pastel-dreams-ui
Export: Tailwind v4 (@theme)
@theme {
/* action color #A78BFA — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F7F3F9;
--color-surface: #EBE8EE;
--color-border: #DAD8DF;
--color-text: #374151;
--color-text-muted: #7F8490;
--color-primary: #A78BFA; /* primary brand / action color. */
--color-accent: #A78BFA; /* 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: #A78BFA; /* inline text links — shares the action color. */
--color-button-bg: #A78BFA; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Open Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Open Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Open Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 36px;
--text-h2: 24px;
--text-body: 14px;
--radius-base: 24px;
--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 #A78BFA — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F7F3F9;
--surface: #EBE8EE;
--border: #DAD8DF;
--text: #374151;
--text-muted: #7F8490;
--primary: #A78BFA; /* primary brand / action color. */
--accent: #A78BFA; /* 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: #A78BFA; /* inline text links — shares the action color. */
--button-bg: #A78BFA; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Open Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Open Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 24px;
--radius-button: 24px;
}
/* fonts: Open Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */