Lemon Squeezy — Design System
Lemon Squeezy sweetens payments ops: Circular Pro Book at 80px/400 — big but never bold — over deep-night gradients, Inter at 18px, and white 40px-radius pills. Dashboard shots and MoR compliance copy get the same soft treatment as the citrus branding; tax paperwork dressed as a friendly SaaS, which is precisely the sell.
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/lemon-squeezy.
Tokens
Lemon Squeezy's decoded design system: background #FFFFFF, text #0A0A0B, accent #5423E7, link #5423E7, primary #BBA7F5; type scale h1 80px / h2 14px / body 14px; 4px spacing base; 8px base radius. The single interactive/action color is #5423E7 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F0 |
| border | #DADADA |
| text | #0A0A0B |
| text_muted | #676767 |
| primary | #BBA7F5 |
| accent | #5423E7 |
| link | #5423E7 |
| secondary | #FF571F |
| button_bg | #5423E7 |
| button_text | #FFFFFF |
Using these colors
- Action color
#5423E7— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#5423E7— one role, not several (the action color).- accent
#5423E7— 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
#BBA7F5— a brand color — but the call-to-action uses #5423E7, not this. - secondary
#FF571F— 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: Inter
- Body: Inter
- h1: 80px
- h2: 14px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 0px
Per-section tokens (11)
- Hero
- Feature
- Feature
- Feature
- Feature
- Feature
- Testimonial / Social Proof
- Gallery / Showcase
- Gallery / Showcase
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Lemon Squeezy — Design System > light, modern, high, custom Lemon Squeezy sweetens payments ops: Circular Pro Book at 80px/400 — big but never bold — over deep-night gradients, Inter at 18px, and white 40px-radius pills. Dashboard shots and MoR compliance copy get the same soft treatment as the citrus branding; tax paperwork dressed as a friendly SaaS, which is precisely the sell. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#DADADA` | | text | `#0A0A0B` | | text_muted | `#676767` | | primary | `#BBA7F5` | | accent | `#5423E7` | | link | `#5423E7` | | secondary | `#FF571F` | | button_bg | `#5423E7` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#5423E7` — 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`, `button_bg` are all `#5423E7` — one role, not several (your action color). - **accent** `#5423E7` — 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** `#BBA7F5` — a brand color — but the call-to-action uses #5423E7, not this. - **secondary** `#FF571F` — 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: **Inter** - Body: **Inter** - h1: 80px - h2: 14px - body: 14px > **Fonts —** Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 0px ## Primary button - bg `#5423E7` · text `#FFFFFF` · radius 0px ## 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 #5423E7 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DADADA;
--color-text: #0A0A0B;
--color-text-muted: #676767;
--color-primary: #BBA7F5; /* a brand color — but the call-to-action uses #5423E7, not this. */
--color-accent: #5423E7; /* 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: #5423E7; /* inline text links — shares the action color. */
--color-secondary: #FF571F; /* 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: #5423E7; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Inter — free, on Google. */
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 80px;
--text-h2: 14px;
--text-body: 14px;
--radius-base: 8px;
--radius-button: 0px;
--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 #5423E7 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DADADA;
--text: #0A0A0B;
--text-muted: #676767;
--primary: #BBA7F5; /* a brand color — but the call-to-action uses #5423E7, not this. */
--accent: #5423E7; /* 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: #5423E7; /* inline text links — shares the action color. */
--secondary: #FF571F; /* 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: #5423E7; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 0px;
}
/* fonts: Inter — free, on Google. */