Encore — Design System
The full decoded design system for Encore: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.
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/encore.
Tokens
Encore's decoded design system: background #EEEEE1, text #111111, accent #FFB84A, link #FFB84A, primary #6D89FF; type scale h1 64px / h2 48px / body 20px; 10px spacing base; 0px base radius. The single interactive/action color is #111111 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #EEEEE1 |
| surface | #E0E0D4 |
| border | #CCCCC1 |
| text | #111111 |
| text_muted | #646460 |
| primary | #6D89FF |
| accent | #FFB84A |
| link | #FFB84A |
| secondary | #B3D77E |
| button_bg | #111111 |
| button_text | #EEEEE1 |
Using these colors
- Action color
#111111— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#FFB84A— one role, not several (the action color).- accent
#FFB84A— accent for emphasis — keep it rare on the page. - primary
#6D89FF— a brand color — but the call-to-action uses #111111, not this. - secondary
#B3D77E— 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: SFMono-Regular
- Body: SFMono-Regular
- Mono: SFMono-Regular
- h1: 64px
- h2: 48px
- body: 20px
Spacing
- base unit: 10px
- scale: 5px, 10px, 15px, 20px, 30px, 40px, 60px, 80px
Radii
- base: 0px
- button: 0px
Per-section tokens (2)
Export: DESIGN.md
# Encore — Design System > light, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#EEEEE1` | | surface | `#E0E0D4` | | border | `#CCCCC1` | | text | `#111111` | | text_muted | `#646460` | | primary | `#6D89FF` | | accent | `#FFB84A` | | link | `#FFB84A` | | secondary | `#B3D77E` | | button_bg | `#111111` | | button_text | `#EEEEE1` | **Using these colors** - **Action color** `#111111` — 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 `#FFB84A` — one role, not several. - **accent** `#FFB84A` — accent for emphasis — keep it rare on the page. - **primary** `#6D89FF` — a brand color — but the call-to-action uses #111111, not this. - **secondary** `#B3D77E` — 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: **SFMono-Regular** _(free fallback: JetBrains Mono)_ - Body: **SFMono-Regular** _(free fallback: JetBrains Mono)_ - Mono: **SFMono-Regular** - h1: 64px - h2: 48px - body: 20px > **Fonts —** SFMono-Regular may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). ## Spacing - base unit: 10px - scale: 5px, 10px, 15px, 20px, 30px, 40px, 60px, 80px ## Radius - base: 0px - button: 0px ## Primary button - bg `#111111` · text `#EEEEE1` · 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 #111111 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #EEEEE1;
--color-surface: #E0E0D4;
--color-border: #CCCCC1;
--color-text: #111111;
--color-text-muted: #646460;
--color-primary: #6D89FF; /* a brand color — but the call-to-action uses #111111, not this. */
--color-accent: #FFB84A; /* accent for emphasis — keep it rare on the page. */
--color-link: #FFB84A; /* fails contrast on the background (~1.5:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--color-secondary: #B3D77E; /* 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: #111111; /* primary-button fill — the main call-to-action color. */
--color-button-text: #EEEEE1;
/* fonts: SFMono-Regular may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */
--font-heading: "SFMono-Regular", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-body: "SFMono-Regular", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-mono: "SFMono-Regular", ui-monospace, monospace;
--text-h1: 64px;
--text-h2: 48px;
--text-body: 20px;
--radius-base: 0px;
--radius-button: 0px;
--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 #111111 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #EEEEE1;
--surface: #E0E0D4;
--border: #CCCCC1;
--text: #111111;
--text-muted: #646460;
--primary: #6D89FF; /* a brand color — but the call-to-action uses #111111, not this. */
--accent: #FFB84A; /* accent for emphasis — keep it rare on the page. */
--link: #FFB84A; /* fails contrast on the background (~1.5:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #B3D77E; /* 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: #111111; /* primary-button fill — the main call-to-action color. */
--button-text: #EEEEE1;
--font-heading: "SFMono-Regular", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-body: "SFMono-Regular", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-mono: "SFMono-Regular", ui-monospace, monospace;
--radius: 0px;
--radius-button: 0px;
}
/* fonts: SFMono-Regular may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */