Framer — Design System
Framer is show-don't-tell in monochrome: black canvas, white GT Walsheim headlines at 54px, and the product itself as the only color source — canvas screenshots, cursor chips and UI panels glowing against the dark. Body text runs small (12–13px) because the interface is the copy. Corners hold a consistent 8px, primary buttons flip to white with the classic #0000EE link-blue reserved for brand moments. Density is high and motion is implied even in stills — a design tool that markets itself by simply being seen.
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/framer.
Tokens
Framer's decoded design system: background #000000, text #ECECEE, accent #0099FF, link #0099FF, primary #0000EE; type scale h1 54px / h2 44px / body 14px; 10px spacing base; 8px 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 | #000000 |
| surface | #0E0E0E |
| border | #232323 |
| text | #ECECEE |
| text_muted | #929293 |
| primary | #0000EE |
| accent | #0099FF |
| link | #0099FF |
| secondary | #0066FF |
| button_bg | #FFFFFF |
| button_text | #0000EE |
Using these colors
- Action color
#FFFFFF— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#0099FF— one role, not several (the action color).- accent
#0099FF— accent for emphasis — keep it rare on the page. - primary
#0000EE— a brand color — but the call-to-action uses #FFFFFF, not this. - secondary
#0066FF— 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: GT Walsheim
- Body: Inter
- h1: 54px
- h2: 44px
- body: 14px
Spacing
- base unit: 10px
- scale: 5px, 10px, 15px, 20px, 30px, 40px, 60px, 80px
Radii
- base: 8px
- button: 8px
Per-section tokens (20)
- Hero — dark · bg #161616 · text #3D474D · 1 col · left
- Hero — dark · bg #000000 · text #81745B · 1 col · left
- Hero — dark · bg #111111 · text #E9E9E2 · 2 col · split
- Gallery / Showcase — dark · bg #000000 · text #817158 · 1 col · left
- Gallery / Showcase — dark · bg #000000 · text #867B6D · 1 col · left
- Pricing / Plans — dark · bg #111111 · text #F6F3EC · 1 col · left
- Feature — dark · bg #000000 · text #242C2C · 2 col · split
- Logo Wall — dark · bg #000000 · text #8F8F8F · 4 col · split
- Logo Wall — dark · bg #111111 · text #94B5BB · 1 col · left
- Bento Grid — dark · bg #000000 · text #2D3B44 · 1 col · left
- Feature — dark · bg #000000 · text #20292A · 2 col · split
- Comparison — dark · bg #111111 · text #DEDEDF · 1 col · left
- Feature — dark · bg #000000 · text #343434 · 1 col · left
- Bento Grid — dark · bg #000000 · text #2D3B44 · 1 col · left
- Logo Wall — dark · bg #000000 · text #54514E · 1 col · left
- Gallery / Showcase — dark · bg #111111 · text #747471 · 1 col · left
- CTA / Sign-up — dark · bg #000000 · text #526CC8 · 1 col · left
- Testimonial / Social Proof — dark · bg #000000 · text #9F928B · 1 col · left
- CTA / Sign-up — dark · bg #000000 · text #4F67BF · 1 col · left
- Footer — dark · bg #000000 · text #7C7C7C · 1 col · left
Export: DESIGN.md
# Framer — Design System > dark, modern, high, custom Framer is show-don't-tell in monochrome: black canvas, white GT Walsheim headlines at 54px, and the product itself as the only color source — canvas screenshots, cursor chips and UI panels glowing against the dark. Body text runs small (12–13px) because the interface is the copy. Corners hold a consistent 8px, primary buttons flip to white with the classic #0000EE link-blue reserved for brand moments. Density is high and motion is implied even in stills — a design tool that markets itself by simply being seen. ## Colors | Role | Value | |------|-------| | bg | `#000000` | | surface | `#0E0E0E` | | border | `#232323` | | text | `#ECECEE` | | text_muted | `#929293` | | primary | `#0000EE` | | accent | `#0099FF` | | link | `#0099FF` | | secondary | `#0066FF` | | button_bg | `#FFFFFF` | | button_text | `#0000EE` | **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`, `link` are all `#0099FF` — one role, not several. - **accent** `#0099FF` — accent for emphasis — keep it rare on the page. - **primary** `#0000EE` — a brand color — but the call-to-action uses #FFFFFF, not this. - **secondary** `#0066FF` — 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: **GT Walsheim** _(free fallback: Poppins)_ - Body: **Inter** - h1: 54px - h2: 44px - body: 14px > **Fonts —** GT Walsheim is proprietary — closest free match: Poppins (Google). Load Poppins; keep GT Walsheim first so licensed users still get it. Inter — free, on Google. ## Spacing - base unit: 10px - scale: 5px, 10px, 15px, 20px, 30px, 40px, 60px, 80px ## Radius - base: 8px - button: 8px ## Primary button - bg `#FFFFFF` · text `#0000EE` · 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: #000000;
--color-surface: #0E0E0E;
--color-border: #232323;
--color-text: #ECECEE;
--color-text-muted: #929293;
--color-primary: #0000EE; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--color-accent: #0099FF; /* accent for emphasis — keep it rare on the page. */
--color-link: #0099FF; /* inline text links and link-styled controls. */
--color-secondary: #0066FF; /* 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: #0000EE;
/* fonts: GT Walsheim is proprietary — closest free match: Poppins (Google). Load Poppins; keep GT Walsheim first so licensed users still get it. Inter — free, on Google. */
--font-heading: "GT Walsheim", "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 54px;
--text-h2: 44px;
--text-body: 14px;
--radius-base: 8px;
--radius-button: 8px;
--spacing-1: 5px;
--spacing-2: 10px;
--spacing-3: 15px;
--spacing-4: 20px;
--spacing-5: 30px;
--spacing-6: 40px;
--spacing-7: 60px;
--spacing-8: 80px;
}Export: CSS variables
:root {
/* action color #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #000000;
--surface: #0E0E0E;
--border: #232323;
--text: #ECECEE;
--text-muted: #929293;
--primary: #0000EE; /* a brand color — but the call-to-action uses #FFFFFF, not this. */
--accent: #0099FF; /* accent for emphasis — keep it rare on the page. */
--link: #0099FF; /* inline text links and link-styled controls. */
--secondary: #0066FF; /* 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: #0000EE;
--font-heading: "GT Walsheim", "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 8px;
}
/* fonts: GT Walsheim is proprietary — closest free match: Poppins (Google). Load Poppins; keep GT Walsheim first so licensed users still get it. Inter — free, on Google. */