Sketch — Design System
The full decoded design system for Sketch: 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/sketch.
Tokens
Sketch's decoded design system: background #F5F5F5, text #000000, accent #555DFF, link #555DFF, primary #0000EE; type scale h1 96px / h2 76px / body 24px; 4px spacing base; 12px base radius. The single interactive/action color is #151515 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F5F5F5 |
| surface | #E6E6E6 |
| border | #D0D0D0 |
| text | #000000 |
| text_muted | #5D5D5D |
| primary | #0000EE |
| accent | #555DFF |
| link | #555DFF |
| secondary | #F26725 |
| button_bg | #151515 |
| button_text | #FFFFFF |
Using these colors
- Action color
#151515— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#555DFF— one role, not several (the action color).- accent
#555DFF— accent for emphasis — keep it rare on the page. - primary
#0000EE— a brand color — but the call-to-action uses #151515, not this. - secondary
#F26725— 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: Reckless
- Body: Inter
- h1: 96px
- h2: 76px
- body: 24px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 12px
- button: 24px
Shadow
rgba(0, 0, 0, 0.05) 0px 1px 1px 0px inset, rgba(255, 255, 255, 0.5) 0px 1px 4px 0px inset, rgba(0, 0, 0, 0.94) 0px -2px 4px 0px inset, rgba(0, 0, 0, 0.2) 0px 1px 4px 0px
Per-section tokens (9)
Export: DESIGN.md
# Sketch — Design System > light, modern, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#F5F5F5` | | surface | `#E6E6E6` | | border | `#D0D0D0` | | text | `#000000` | | text_muted | `#5D5D5D` | | primary | `#0000EE` | | accent | `#555DFF` | | link | `#555DFF` | | secondary | `#F26725` | | button_bg | `#151515` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#151515` — 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 `#555DFF` — one role, not several. - **accent** `#555DFF` — accent for emphasis — keep it rare on the page. - **primary** `#0000EE` — a brand color — but the call-to-action uses #151515, not this. - **secondary** `#F26725` — 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: **Reckless** _(free fallback: Fraunces)_ - Body: **Inter** - h1: 96px - h2: 76px - body: 24px > **Fonts —** Reckless is proprietary — closest free match: Fraunces (Google). Load Fraunces; keep Reckless first so licensed users still get it. Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 12px - button: 24px ## Primary button - bg `#151515` · text `#FFFFFF` · radius 24px ## 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 #151515 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F5F5F5;
--color-surface: #E6E6E6;
--color-border: #D0D0D0;
--color-text: #000000;
--color-text-muted: #5D5D5D;
--color-primary: #0000EE; /* a brand color — but the call-to-action uses #151515, not this. */
--color-accent: #555DFF; /* accent for emphasis — keep it rare on the page. */
--color-link: #555DFF; /* inline text links and link-styled controls. */
--color-secondary: #F26725; /* 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: #151515; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Reckless is proprietary — closest free match: Fraunces (Google). Load Fraunces; keep Reckless first so licensed users still get it. Inter — free, on Google. */
--font-heading: "Reckless", "Fraunces", Georgia, 'Times New Roman', serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 96px;
--text-h2: 76px;
--text-body: 24px;
--radius-base: 12px;
--radius-button: 24px;
--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 #151515 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F5F5F5;
--surface: #E6E6E6;
--border: #D0D0D0;
--text: #000000;
--text-muted: #5D5D5D;
--primary: #0000EE; /* a brand color — but the call-to-action uses #151515, not this. */
--accent: #555DFF; /* accent for emphasis — keep it rare on the page. */
--link: #555DFF; /* inline text links and link-styled controls. */
--secondary: #F26725; /* 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: #151515; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Reckless", "Fraunces", Georgia, 'Times New Roman', serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 12px;
--radius-button: 24px;
}
/* fonts: Reckless is proprietary — closest free match: Fraunces (Google). Load Fraunces; keep Reckless first so licensed users still get it. Inter — free, on Google. */