Recraft — Design System
Recraft art-directs like the design tool it sells: ABC Gravity Condensed at 76px/900 — with italic cuts swerving mid-headline — in white on black, Geist at 16-19px keeping the specs legible, and acid lime #D2FC31 buttons at 8px radius. Generated imagery tiles the page as proof-of-output; a model company whose typography argues it has taste, tastefully.
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/recraft.
Tokens
Recraft's decoded design system: background #000000, text #ECECEE, accent #D2FC31, link #FF5B15, primary #D2FC31; type scale h1 76px / h2 72px / body 16px; 4px spacing base; 0px base radius. The single interactive/action color is #D2FC31 — 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 | #D2FC31 |
| accent | #D2FC31 |
| link | #FF5B15 |
| secondary | #0000EE |
| button_bg | #D2FC31 |
| button_text | #0000EE |
Using these colors
- Action color
#D2FC31— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#D2FC31— one role, not several (the action color).- accent
#D2FC31— 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
#FF5B15— inline text links and link-styled controls. - secondary
#0000EE— 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: ABC Gravity Condensed
- Body: Geist
- h1: 76px
- h2: 72px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 12px
Per-section tokens (11)
- Banner
- Hero
- Logo Wall
- Feature
- Feature
- Feature
- Gallery / Showcase
- Logo Wall
- Testimonial / Social Proof
- Feature
- Footer
Export: DESIGN.md
# Recraft — Design System > dark, modern, high, custom Recraft art-directs like the design tool it sells: ABC Gravity Condensed at 76px/900 — with italic cuts swerving mid-headline — in white on black, Geist at 16-19px keeping the specs legible, and acid lime #D2FC31 buttons at 8px radius. Generated imagery tiles the page as proof-of-output; a model company whose typography argues it has taste, tastefully. ## Colors | Role | Value | |------|-------| | bg | `#000000` | | surface | `#0E0E0E` | | border | `#232323` | | text | `#ECECEE` | | text_muted | `#929293` | | primary | `#D2FC31` | | accent | `#D2FC31` | | link | `#FF5B15` | | secondary | `#0000EE` | | button_bg | `#D2FC31` | | button_text | `#0000EE` | **Using these colors** - **Action color** `#D2FC31` — 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`, `button_bg` are all `#D2FC31` — one role, not several (your action color). - **accent** `#D2FC31` — 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** `#FF5B15` — inline text links and link-styled controls. - **secondary** `#0000EE` — 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: **ABC Gravity Condensed** _(free fallback: Newsreader)_ - Body: **Geist** - h1: 76px - h2: 72px - body: 16px > **Fonts —** ABC Gravity Condensed may be proprietary — safe free fallback: Newsreader (Google Fonts). Geist — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 0px - button: 12px ## Primary button - bg `#D2FC31` · text `#0000EE` · radius 12px ## 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 #D2FC31 — 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: #D2FC31; /* primary brand / action color. */
--color-accent: #D2FC31; /* 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: #FF5B15; /* inline text links and link-styled controls. */
--color-secondary: #0000EE; /* 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: #D2FC31; /* primary-button fill — the main call-to-action color. */
--color-button-text: #0000EE;
/* fonts: ABC Gravity Condensed may be proprietary — safe free fallback: Newsreader (Google Fonts). Geist — free, on Google. */
--font-heading: "ABC Gravity Condensed", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 76px;
--text-h2: 72px;
--text-body: 16px;
--radius-base: 0px;
--radius-button: 12px;
--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 #D2FC31 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #000000;
--surface: #0E0E0E;
--border: #232323;
--text: #ECECEE;
--text-muted: #929293;
--primary: #D2FC31; /* primary brand / action color. */
--accent: #D2FC31; /* 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: #FF5B15; /* inline text links and link-styled controls. */
--secondary: #0000EE; /* 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: #D2FC31; /* primary-button fill — the main call-to-action color. */
--button-text: #0000EE;
--font-heading: "ABC Gravity Condensed", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 12px;
}
/* fonts: ABC Gravity Condensed may be proprietary — safe free fallback: Newsreader (Google Fonts). Geist — free, on Google. */