Cluely — Design System
Cluely provokes in Garamond: EB Garamond at 80px/500 — 'Undetectable' set like scripture over dark video — with Geist at 18-19px playing the straight man. The old-style serif at hero scale gives the AI-assistant's transgressive pitch a literary alibi; controversy art-directed as elegance.
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/cluely.
Tokens
Cluely's decoded design system: background #FFFFFF, text #000000, accent #6B7280, link #6B7280, primary #DDE2EE; type scale h1 80px / h2 19px / body 12px; 4px spacing base; 6px 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 | #FFFFFF |
| surface | #EFEFEF |
| border | #D8D8D8 |
| text | #000000 |
| text_muted | #606060 |
| primary | #DDE2EE |
| accent | #6B7280 |
| link | #6B7280 |
| secondary | #8C929D |
| button_bg | #FFFFFF |
| button_text | #FFFFFF |
Using these colors
- Action color
#FFFFFF— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#6B7280— one role, not several (the action color).- accent
#6B7280— accent for emphasis — keep it rare on the page. - primary
#DDE2EE— a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FFFFFF). - secondary
#8C929D— 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: EB Garamond
- Body: Geist
- h1: 80px
- h2: 19px
- body: 12px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 6px
- button: 12px
Shadow
rgba(148, 172, 243, 0.4) 20px 20px 24px 0px, rgba(191, 229, 251, 0.4) -3px -3px 4px 0px inset, rgba(19, 26, 228, 0.1) 4px 4px 4px 0px inset
Per-section tokens (8)
Export: DESIGN.md
# Cluely — Design System > light, modern, medium, tailwind Cluely provokes in Garamond: EB Garamond at 80px/500 — 'Undetectable' set like scripture over dark video — with Geist at 18-19px playing the straight man. The old-style serif at hero scale gives the AI-assistant's transgressive pitch a literary alibi; controversy art-directed as elegance. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#EFEFEF` | | border | `#D8D8D8` | | text | `#000000` | | text_muted | `#606060` | | primary | `#DDE2EE` | | accent | `#6B7280` | | link | `#6B7280` | | secondary | `#8C929D` | | button_bg | `#FFFFFF` | | button_text | `#FFFFFF` | **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 `#6B7280` — one role, not several. - **accent** `#6B7280` — accent for emphasis — keep it rare on the page. - **primary** `#DDE2EE` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FFFFFF). - **secondary** `#8C929D` — 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: **EB Garamond** _(free fallback: Newsreader)_ - Body: **Geist** - h1: 80px - h2: 19px - body: 12px > **Fonts —** EB Garamond 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: 6px - button: 12px ## Primary button - bg `#FFFFFF` · text `#FFFFFF` · 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 #FFFFFF — 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: #DDE2EE; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FFFFFF). */
--color-accent: #6B7280; /* accent for emphasis — keep it rare on the page. */
--color-link: #6B7280; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #FFFFFF). */
--color-secondary: #8C929D; /* 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: #FFFFFF;
/* fonts: EB Garamond may be proprietary — safe free fallback: Newsreader (Google Fonts). Geist — free, on Google. */
--font-heading: "EB Garamond", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 80px;
--text-h2: 19px;
--text-body: 12px;
--radius-base: 6px;
--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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #EFEFEF;
--border: #D8D8D8;
--text: #000000;
--text-muted: #606060;
--primary: #DDE2EE; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FFFFFF). */
--accent: #6B7280; /* accent for emphasis — keep it rare on the page. */
--link: #6B7280; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #FFFFFF). */
--secondary: #8C929D; /* 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: #FFFFFF;
--font-heading: "EB Garamond", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 6px;
--radius-button: 12px;
}
/* fonts: EB Garamond may be proprietary — safe free fallback: Newsreader (Google Fonts). Geist — free, on Google. */