Magic Patterns — Design System
Magic Patterns prototypes in the system stack: -apple-system at 72px/700 in ink #1C2024 on near-white, zero-radius text CTAs, and generated UI mockups as the only imagery. For an AI tool that designs product interfaces, shipping no webfont reads as a thesis — the design energy belongs in the output, not the shell.
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/magic-patterns.
Tokens
Magic Patterns's decoded design system: background #FCFCFD, text #000000, accent #1C2024, link #EDF2FE, primary #395AC7; type scale h1 72px / h2 60px / body 16px; 4px spacing base; 6px base radius. The single interactive/action color is #1C2024 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FCFCFD |
| surface | #ECECED |
| border | #D6D6D7 |
| text | #000000 |
| text_muted | #5F5F60 |
| primary | #395AC7 |
| accent | #1C2024 |
| link | #EDF2FE |
| secondary | #107D98 |
| button_bg | #1C2024 |
| button_text | #FCFCFD |
Using these colors
- Action color
#1C2024— the single interactive color; only on things you click or must notice, never large fills. accent,button_bgare all#1C2024— one role, not several (the action color).- accent
#1C2024— 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
#395AC7— a brand color — but the call-to-action uses #1C2024, not this. - link
#EDF2FE— fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - secondary
#107D98— 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: system sans
- Body: system sans
- h1: 72px
- h2: 60px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 6px
- button: 8px
Per-section tokens (8)
Export: DESIGN.md
# Magic Patterns — Design System > light, modern, medium, custom Magic Patterns prototypes in the system stack: -apple-system at 72px/700 in ink #1C2024 on near-white, zero-radius text CTAs, and generated UI mockups as the only imagery. For an AI tool that designs product interfaces, shipping no webfont reads as a thesis — the design energy belongs in the output, not the shell. ## Colors | Role | Value | |------|-------| | bg | `#FCFCFD` | | surface | `#ECECED` | | border | `#D6D6D7` | | text | `#000000` | | text_muted | `#5F5F60` | | primary | `#395AC7` | | accent | `#1C2024` | | link | `#EDF2FE` | | secondary | `#107D98` | | button_bg | `#1C2024` | | button_text | `#FCFCFD` | **Using these colors** - **Action color** `#1C2024` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `button_bg` are all `#1C2024` — one role, not several (your action color). - **accent** `#1C2024` — 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** `#395AC7` — a brand color — but the call-to-action uses #1C2024, not this. - **link** `#EDF2FE` — fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - **secondary** `#107D98` — 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: **system sans** _(free fallback: Newsreader)_ - Body: **system sans** _(free fallback: Newsreader)_ - h1: 72px - h2: 60px - body: 16px > **Fonts —** system 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: 6px - button: 8px ## Primary button - bg `#1C2024` · text `#FCFCFD` · radius 8px ## 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 #1C2024 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FCFCFD;
--color-surface: #ECECED;
--color-border: #D6D6D7;
--color-text: #000000;
--color-text-muted: #5F5F60;
--color-primary: #395AC7; /* a brand color — but the call-to-action uses #1C2024, not this. */
--color-accent: #1C2024; /* 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: #EDF2FE; /* fails contrast on the background (~1.1: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: #107D98; /* 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: #1C2024; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FCFCFD;
/* fonts: system sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "system sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "system sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 72px;
--text-h2: 60px;
--text-body: 16px;
--radius-base: 6px;
--radius-button: 8px;
--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 #1C2024 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FCFCFD;
--surface: #ECECED;
--border: #D6D6D7;
--text: #000000;
--text-muted: #5F5F60;
--primary: #395AC7; /* a brand color — but the call-to-action uses #1C2024, not this. */
--accent: #1C2024; /* 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: #EDF2FE; /* fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #107D98; /* 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: #1C2024; /* primary-button fill — the main call-to-action color. */
--button-text: #FCFCFD;
--font-heading: "system sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "system sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 6px;
--radius-button: 8px;
}
/* fonts: system sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */