Magnific — Design System
The full decoded design system for Magnific: 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/magnific.
Tokens
Magnific's decoded design system: background #101010, text #ECECEE, accent #FFFFFF, link #3F0808, primary #0000EE; type scale h1 55px / h2 36px / body 18px; 4px spacing base; 4px base radius. The single interactive/action color is #FFFFFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #101010 |
| surface | #1D1D1D |
| border | #313131 |
| text | #ECECEE |
| text_muted | #989899 |
| primary | #0000EE |
| accent | #FFFFFF |
| link | #3F0808 |
| secondary | #2C0000 |
| button_bg | #FFFFFF |
| button_text | #000000 |
Using these colors
- Action color
#FFFFFF— the single interactive color; only on things you click or must notice, never large fills. accent,button_bgare all#FFFFFF— one role, not several (the action color).- accent
#FFFFFF— 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
#0000EE— a brand color — but the call-to-action uses #FFFFFF, not this. - link
#3F0808— 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
#2C0000— 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: Geist
- Body: Klarheit
- h1: 55px
- h2: 36px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 4px
- button: 8px
Export: DESIGN.md
# Magnific — Design System > dark, modern, high, tailwind ## Colors | Role | Value | |------|-------| | bg | `#101010` | | surface | `#1D1D1D` | | border | `#313131` | | text | `#ECECEE` | | text_muted | `#989899` | | primary | `#0000EE` | | accent | `#FFFFFF` | | link | `#3F0808` | | secondary | `#2C0000` | | button_bg | `#FFFFFF` | | button_text | `#000000` | **Using these colors** - **Action color** `#FFFFFF` — 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 `#FFFFFF` — one role, not several (your action color). - **accent** `#FFFFFF` — 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** `#0000EE` — a brand color — but the call-to-action uses #FFFFFF, not this. - **link** `#3F0808` — 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** `#2C0000` — 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: **Geist** - Body: **Klarheit** _(free fallback: Newsreader)_ - h1: 55px - h2: 36px - body: 18px > **Fonts —** Geist — free, on Google. Klarheit may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 4px - button: 8px ## Primary button - bg `#FFFFFF` · text `#000000` · 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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #101010;
--color-surface: #1D1D1D;
--color-border: #313131;
--color-text: #ECECEE;
--color-text-muted: #989899;
--color-primary: #0000EE; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--color-accent: #FFFFFF; /* 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: #3F0808; /* 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: #2C0000; /* 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: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #000000;
/* fonts: Geist — free, on Google. Klarheit may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Klarheit", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 55px;
--text-h2: 36px;
--text-body: 18px;
--radius-base: 4px;
--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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #101010;
--surface: #1D1D1D;
--border: #313131;
--text: #ECECEE;
--text-muted: #989899;
--primary: #0000EE; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--accent: #FFFFFF; /* 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: #3F0808; /* 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: #2C0000; /* 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: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--button-text: #000000;
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Klarheit", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 4px;
--radius-button: 8px;
}
/* fonts: Geist — free, on Google. Klarheit may be proprietary — safe free fallback: Newsreader (Google Fonts). */