Drizzle — Design System
Drizzle ORM ships zero webfonts on purpose: the ui-sans-serif system stack at 32-40px/600-700, docs-site layout, 20px-radius ghost buttons, and memes embedded as first-class content ('ORM for you to settle... ship ship ship'). The anti-design is the design — a TypeScript ORM whose landing page performs the same lightweight, no-dependency ethos as its bundle size.
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/drizzle.
Tokens
Drizzle's decoded design system: background #FFFFFF, text #3B3F4B, accent #F6F6F7, link #3B3F4B, primary #282B3B; type scale h1 16px / h2 32px / body 12px; 4px spacing base; 4px base radius. The single interactive/action color is #F6F6F7 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F3F3F4 |
| border | #E1E2E4 |
| text | #3B3F4B |
| text_muted | #85878F |
| primary | #282B3B |
| accent | #F6F6F7 |
| link | #3B3F4B |
| secondary | #4B5563 |
| button_bg | #F6F6F7 |
| button_text | #222222 |
Using these colors
- Action color
#F6F6F7— the single interactive color; only on things you click or must notice, never large fills. accent,button_bgare all#F6F6F7— one role, not several (the action color).- accent
#F6F6F7— 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
#282B3B— a brand color — but the call-to-action uses #F6F6F7, not this. - link
#3B3F4B— reads as a neutral UI color, not a link accent — verify against the reference (action = #F6F6F7). - secondary
#4B5563— 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: Roboto
- Body: Roboto
- h1: 16px
- h2: 32px
- body: 12px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 4px
- button: 0px
Per-section tokens (9)
- Hero
- Feature
- Stats / Metrics
- Integrations
- Integrations
- Feature
- Logo Wall
- Pricing / Plans
- Testimonial / Social Proof
Export: DESIGN.md
# Drizzle — Design System
> light, modern, medium, custom
Drizzle ORM ships zero webfonts on purpose: the ui-sans-serif system stack at 32-40px/600-700, docs-site layout, 20px-radius ghost buttons, and memes embedded as first-class content ('ORM for you to settle... ship ship ship'). The anti-design is the design — a TypeScript ORM whose landing page performs the same lightweight, no-dependency ethos as its bundle size.
## Colors
| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F3F3F4` |
| border | `#E1E2E4` |
| text | `#3B3F4B` |
| text_muted | `#85878F` |
| primary | `#282B3B` |
| accent | `#F6F6F7` |
| link | `#3B3F4B` |
| secondary | `#4B5563` |
| button_bg | `#F6F6F7` |
| button_text | `#222222` |
**Using these colors**
- **Action color** `#F6F6F7` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `button_bg` are all `#F6F6F7` — one role, not several (your action color).
- **accent** `#F6F6F7` — 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** `#282B3B` — a brand color — but the call-to-action uses #F6F6F7, not this.
- **link** `#3B3F4B` — reads as a neutral UI color, not a link accent — verify against the reference (action = #F6F6F7).
- **secondary** `#4B5563` — 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: **Roboto**
- Body: **Roboto**
- h1: 16px
- h2: 32px
- body: 12px
> **Fonts —** Roboto — free, on Google.
## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
## Radius
- base: 4px
- button: 0px
## Primary button
- bg `#F6F6F7` · text `#222222` · 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 #F6F6F7 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F3F3F4;
--color-border: #E1E2E4;
--color-text: #3B3F4B;
--color-text-muted: #85878F;
--color-primary: #282B3B; /* a brand color — but the call-to-action uses #F6F6F7, not this. */
--color-accent: #F6F6F7; /* 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: #3B3F4B; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #F6F6F7). */
--color-secondary: #4B5563; /* 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: #F6F6F7; /* primary-button fill — the main call-to-action color. */
--color-button-text: #222222;
/* fonts: Roboto — free, on Google. */
--font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 16px;
--text-h2: 32px;
--text-body: 12px;
--radius-base: 4px;
--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 #F6F6F7 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F3F3F4;
--border: #E1E2E4;
--text: #3B3F4B;
--text-muted: #85878F;
--primary: #282B3B; /* a brand color — but the call-to-action uses #F6F6F7, not this. */
--accent: #F6F6F7; /* 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: #3B3F4B; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #F6F6F7). */
--secondary: #4B5563; /* 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: #F6F6F7; /* primary-button fill — the main call-to-action color. */
--button-text: #222222;
--font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 4px;
--radius-button: 0px;
}
/* fonts: Roboto — free, on Google. */