Figma — Design System
The full decoded design system for Figma: 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/figma.
Tokens
Figma's decoded design system: background #FFFFFF, text #000000, accent #E4FF97, link #E4FF97, primary #1A73E8; type scale h1 64px / h2 14px / body 20px; 4px spacing base; 0px base radius. The single interactive/action color is #000000 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #EFEFEF |
| border | #D8D8D8 |
| text | #000000 |
| text_muted | #606060 |
| primary | #1A73E8 |
| accent | #E4FF97 |
| link | #E4FF97 |
| secondary | #4285F4 |
| button_bg | #000000 |
| button_text | #FFFFFF |
Using these colors
- Action color
#000000— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#E4FF97— one role, not several (the action color).- accent
#E4FF97— accent for emphasis — keep it rare on the page. - primary
#1A73E8— a brand color — but the call-to-action uses #000000, not this. - secondary
#4285F4— 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: SF Pro Display
- Body: figmaSans
- Mono: figmaMono
- h1: 64px
- h2: 14px
- body: 20px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 8px
Per-section tokens (7)
- Hero — light · bg #FFFFFF · text #313131 · 2 col · split
- Pricing / Plans — light · bg #FFFFFF · text #464647 · 1 col · left
- Feature — light · bg #FFFFFF · text #717171 · 3 col · split
- Comparison — light · bg #FFFFFF · text #B3C2B9 · 1 col · left
- FAQ — light · bg #F3FEE4 · text #7B7F74 · 1 col · left
- Logo Wall — light · bg #F3FEE4 · text #5C6057 · 1 col · left
- Footer — dark · bg #000000 · text #F3FEE4 · 1 col · left
Export: DESIGN.md
# Figma — Design System > light, modern, high, custom ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#EFEFEF` | | border | `#D8D8D8` | | text | `#000000` | | text_muted | `#606060` | | primary | `#1A73E8` | | accent | `#E4FF97` | | link | `#E4FF97` | | secondary | `#4285F4` | | button_bg | `#000000` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#000000` — 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` are all `#E4FF97` — one role, not several. - **accent** `#E4FF97` — accent for emphasis — keep it rare on the page. - **primary** `#1A73E8` — a brand color — but the call-to-action uses #000000, not this. - **secondary** `#4285F4` — 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: **SF Pro Display** _(free fallback: Inter)_ - Body: **figmaSans** _(free fallback: Newsreader)_ - Mono: **figmaMono** | Role | Size / weight · line-height · tracking | |------|------------------------------------------| | hero | 88px / 400 · lh 88px · tracking -1.25px | | h2 | 56px / 400 · lh 56px · tracking -1.25px | | h3 | 44px / 400 · lh 48px · tracking -0.66px | | body | 16px / 400 · lh 22px | | small | 14px / 400 · lh 20px | - Weight ladder: 320 · 400 — use these exact measured weights, not the 400/600 defaults. > **Fonts —** SF Pro Display is proprietary — closest free match: Inter (Google). Load Inter; keep SF Pro Display first so licensed users still get it. figmaSans may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px - section rhythm: 80px top/bottom padding per section (measured) ## Radius - base: 0px - button: 8px - card: 8px - pill: 9999px - sharp: 2px ## Primary button - bg `#000000` · text `#FFFFFF` · 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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #EFEFEF;
--color-border: #D8D8D8;
--color-text: #000000;
--color-text-muted: #606060;
--color-primary: #1A73E8; /* a brand color — but the call-to-action uses #000000, not this. */
--color-accent: #E4FF97; /* accent for emphasis — keep it rare on the page. */
--color-link: #E4FF97; /* 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: #4285F4; /* 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: #000000; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: SF Pro Display is proprietary — closest free match: Inter (Google). Load Inter; keep SF Pro Display first so licensed users still get it. figmaSans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "SF Pro Display", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "figmaSans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "figmaMono", ui-monospace, monospace;
/* measured weights: 320, 400 — use these, not 400/600 */
--text-hero: 88px; --font-weight-hero: 400; --leading-hero: 88px; --tracking-hero: -1.25px;
--text-h2: 56px; --font-weight-h2: 400; --leading-h2: 56px; --tracking-h2: -1.25px;
--text-h3: 44px; --font-weight-h3: 400; --leading-h3: 48px; --tracking-h3: -0.66px;
--text-body: 16px; --font-weight-body: 400; --leading-body: 22px;
--text-small: 14px; --font-weight-small: 400; --leading-small: 20px;
--radius-base: 0px;
--radius-button: 8px;
--radius-card: 8px;
--radius-pill: 9999px;
--radius-sharp: 2px;
--section-y: 80px; /* per-section vertical padding (measured) */
--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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #EFEFEF;
--border: #D8D8D8;
--text: #000000;
--text-muted: #606060;
--primary: #1A73E8; /* a brand color — but the call-to-action uses #000000, not this. */
--accent: #E4FF97; /* accent for emphasis — keep it rare on the page. */
--link: #E4FF97; /* 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: #4285F4; /* 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: #000000; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "SF Pro Display", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "figmaSans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "figmaMono", ui-monospace, monospace;
--text-hero: 88px; --weight-hero: 400; --leading-hero: 88px; --tracking-hero: -1.25px;
--text-h2: 56px; --weight-h2: 400; --leading-h2: 56px; --tracking-h2: -1.25px;
--text-h3: 44px; --weight-h3: 400; --leading-h3: 48px; --tracking-h3: -0.66px;
--text-body: 16px; --weight-body: 400; --leading-body: 22px;
--text-small: 14px; --weight-small: 400; --leading-small: 20px;
--radius: 0px;
--radius-button: 8px;
--radius-card: 8px;
--radius-pill: 9999px;
--radius-sharp: 2px;
--section-y: 80px;
}
/* fonts: SF Pro Display is proprietary — closest free match: Inter (Google). Load Inter; keep SF Pro Display first so licensed users still get it. figmaSans may be proprietary — safe free fallback: Newsreader (Google Fonts). */