Turso — Design System
The full decoded design system for Turso: 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/turso.
Tokens
Turso's decoded design system: background #0D1318, text #ECECEE, accent #4FF7D1, link #4FF7D1, primary #162129; type scale h1 16px / h2 72px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #4FF7D1 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #0D1318 |
| surface | #1A2024 |
| border | #2E3338 |
| text | #ECECEE |
| text_muted | #97999C |
| primary | #162129 |
| accent | #4FF7D1 |
| link | #4FF7D1 |
| secondary | #D946EF |
| button_bg | #4FF7D1 |
| button_text | #000000 |
Using these colors
- Action color
#4FF7D1— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#4FF7D1— one role, not several (the action color).- accent
#4FF7D1— 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
#162129— a brand color — but the call-to-action uses #4FF7D1, not this. - secondary
#D946EF— 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
- Mono: SFMono-Regular
- h1: 16px
- h2: 72px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 9999px
Per-section tokens (8)
- Hero — dark · bg #0D1318 · text #51FAD3 · 1 col · left
- Logo Wall — dark · bg #0D1318 · text #4C6764 · 1 col · left
- Bento Grid — dark · bg #0D1318 · text #638C86 · 3 col · split
- Testimonial / Social Proof — dark · bg #0D1318 · text #8A8D8E · 3 col · split
- Feature — dark · bg #0D1318 · text #A1C4BA · 2 col · split
- Feature — dark · bg #0D1318 · text #586873 · 2 col · split
- CTA / Sign-up — dark · bg #0D1318 · text #7A8D8F · 4 col · split
- Footer — dark · bg #0D1318 · text #617C7B · 1 col · left
Export: DESIGN.md
# Turso — Design System > dark, modern, high, tailwind ## Colors | Role | Value | |------|-------| | bg | `#0D1318` | | surface | `#1A2024` | | border | `#2E3338` | | text | `#ECECEE` | | text_muted | `#97999C` | | primary | `#162129` | | accent | `#4FF7D1` | | link | `#4FF7D1` | | secondary | `#D946EF` | | button_bg | `#4FF7D1` | | button_text | `#000000` | **Using these colors** - **Action color** `#4FF7D1` — 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 `#4FF7D1` — one role, not several (your action color). - **accent** `#4FF7D1` — 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** `#162129` — a brand color — but the call-to-action uses #4FF7D1, not this. - **secondary** `#D946EF` — 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** - Mono: **SFMono-Regular** - h1: 16px - h2: 72px - body: 16px > **Fonts —** Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 9999px ## Primary button - bg `#4FF7D1` · text `#000000` · radius 9999px ## 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 #4FF7D1 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #0D1318;
--color-surface: #1A2024;
--color-border: #2E3338;
--color-text: #ECECEE;
--color-text-muted: #97999C;
--color-primary: #162129; /* a brand color — but the call-to-action uses #4FF7D1, not this. */
--color-accent: #4FF7D1; /* 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: #4FF7D1; /* inline text links — shares the action color. */
--color-secondary: #D946EF; /* 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: #4FF7D1; /* primary-button fill — the main call-to-action color. */
--color-button-text: #000000;
/* 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;
--font-mono: "SFMono-Regular", ui-monospace, monospace;
--text-h1: 16px;
--text-h2: 72px;
--text-body: 16px;
--radius-base: 8px;
--radius-button: 9999px;
--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 #4FF7D1 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #0D1318;
--surface: #1A2024;
--border: #2E3338;
--text: #ECECEE;
--text-muted: #97999C;
--primary: #162129; /* a brand color — but the call-to-action uses #4FF7D1, not this. */
--accent: #4FF7D1; /* 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: #4FF7D1; /* inline text links — shares the action color. */
--secondary: #D946EF; /* 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: #4FF7D1; /* primary-button fill — the main call-to-action color. */
--button-text: #000000;
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "SFMono-Regular", ui-monospace, monospace;
--radius: 8px;
--radius-button: 9999px;
}
/* fonts: Inter — free, on Google. */