Lovable — Design System
Lovable builds apps from prompts in Camera Plain at 48-60px/600, soft greys on warm white #FAFAFA, and near-black 8px-radius buttons. The prompt box is the hero — type something, get software — and community-built apps tile below as proof; a vibe-coding platform whose gentle variable face keeps the magic feeling approachable.
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/lovable.
Tokens
Lovable's decoded design system: background #FAFAFA, text #030303, accent #1E1E1E, link #000000, primary #000000; type scale h1 20px / h2 48px / body 20px; 4px spacing base; 7px base radius. The single interactive/action color is #1E1E1E — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FAFAFA |
| surface | #EBEBEB |
| border | #D4D4D4 |
| text | #030303 |
| text_muted | #606060 |
| primary | #000000 |
| accent | #1E1E1E |
| link | #000000 |
| button_bg | #1E1E1E |
| button_text | #FAFAFA |
Using these colors
- Action color
#1E1E1E— the single interactive color; only on things you click or must notice, never large fills. primary,linkare all#000000— one role, not several (the action color).accent,button_bgare all#1E1E1E— one role, not several (the action color).- accent
#1E1E1E— 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.
Typography
- h1: 20px
- h2: 48px
- body: 20px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 7px
- button: 8px
Per-section tokens (8)
Export: DESIGN.md
# Lovable — Design System > light, modern, medium, tailwind Lovable builds apps from prompts in Camera Plain at 48-60px/600, soft greys on warm white #FAFAFA, and near-black 8px-radius buttons. The prompt box is the hero — type something, get software — and community-built apps tile below as proof; a vibe-coding platform whose gentle variable face keeps the magic feeling approachable. ## Colors | Role | Value | |------|-------| | bg | `#FAFAFA` | | surface | `#EBEBEB` | | border | `#D4D4D4` | | text | `#030303` | | text_muted | `#606060` | | primary | `#000000` | | accent | `#1E1E1E` | | link | `#000000` | | button_bg | `#1E1E1E` | | button_text | `#FAFAFA` | **Using these colors** - **Action color** `#1E1E1E` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary`, `link` are all `#000000` — one role, not several. - `accent`, `button_bg` are all `#1E1E1E` — one role, not several (your action color). - **accent** `#1E1E1E` — 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. ## Typography - h1: 20px - h2: 48px - body: 20px ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 7px - button: 8px ## Primary button - bg `#1E1E1E` · text `#FAFAFA` · 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 #1E1E1E — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FAFAFA;
--color-surface: #EBEBEB;
--color-border: #D4D4D4;
--color-text: #030303;
--color-text-muted: #606060;
--color-primary: #000000; /* ≈ the text color — a foreground/text color, not an action color (action = #1E1E1E). */
--color-accent: #1E1E1E; /* 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: #000000; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #1E1E1E). */
--color-button-bg: #1E1E1E; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FAFAFA;
--text-h1: 20px;
--text-h2: 48px;
--text-body: 20px;
--radius-base: 7px;
--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 #1E1E1E — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FAFAFA;
--surface: #EBEBEB;
--border: #D4D4D4;
--text: #030303;
--text-muted: #606060;
--primary: #000000; /* ≈ the text color — a foreground/text color, not an action color (action = #1E1E1E). */
--accent: #1E1E1E; /* 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: #000000; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #1E1E1E). */
--button-bg: #1E1E1E; /* primary-button fill — the main call-to-action color. */
--button-text: #FAFAFA;
--radius: 7px;
--radius-button: 8px;
}