Pinecone — Design System
The full decoded design system for Pinecone: 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/pinecone.
Tokens
Pinecone's decoded design system: background #FBFBFC, text #4B5563, accent #002BFF, link #002BFF, primary #4B5563; type scale h1 44px / h2 32px / body 16px; 4px spacing base; 0px base radius. The single interactive/action color is #1C1917 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FBFBFC |
| surface | #F0F1F2 |
| border | #E0E2E5 |
| text | #4B5563 |
| text_muted | #8D949D |
| primary | #4B5563 |
| accent | #002BFF |
| link | #002BFF |
| secondary | #CBD5E1 |
| button_bg | #1C1917 |
| button_text | #FBFBFC |
Using these colors
- Action color
#1C1917— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#002BFF— one role, not several (the action color).- accent
#002BFF— accent for emphasis — keep it rare on the page. - primary
#4B5563— ≈ the text color — a foreground/text color, not an action color (action = #1C1917). - secondary
#CBD5E1— 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
- h1: 44px
- h2: 32px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 0px
Per-section tokens (10)
- Hero
- Logo Wall
- Integrations
- Pricing / Plans
- Feature
- Steps / How-it-works
- Stats / Metrics
- Feature
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Pinecone — Design System > light, professional, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#FBFBFC` | | surface | `#F0F1F2` | | border | `#E0E2E5` | | text | `#4B5563` | | text_muted | `#8D949D` | | primary | `#4B5563` | | accent | `#002BFF` | | link | `#002BFF` | | secondary | `#CBD5E1` | | button_bg | `#1C1917` | | button_text | `#FBFBFC` | **Using these colors** - **Action color** `#1C1917` — 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 `#002BFF` — one role, not several. - **accent** `#002BFF` — accent for emphasis — keep it rare on the page. - **primary** `#4B5563` — ≈ the text color — a foreground/text color, not an action color (action = #1C1917). - **secondary** `#CBD5E1` — 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 - h1: 44px - h2: 32px - body: 16px ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 0px - button: 0px ## Primary button - bg `#1C1917` · text `#FBFBFC` · 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 #1C1917 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FBFBFC;
--color-surface: #F0F1F2;
--color-border: #E0E2E5;
--color-text: #4B5563;
--color-text-muted: #8D949D;
--color-primary: #4B5563; /* ≈ the text color — a foreground/text color, not an action color (action = #1C1917). */
--color-accent: #002BFF; /* accent for emphasis — keep it rare on the page. */
--color-link: #002BFF; /* inline text links and link-styled controls. */
--color-secondary: #CBD5E1; /* 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: #1C1917; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FBFBFC;
--text-h1: 44px;
--text-h2: 32px;
--text-body: 16px;
--radius-base: 0px;
--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 #1C1917 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FBFBFC;
--surface: #F0F1F2;
--border: #E0E2E5;
--text: #4B5563;
--text-muted: #8D949D;
--primary: #4B5563; /* ≈ the text color — a foreground/text color, not an action color (action = #1C1917). */
--accent: #002BFF; /* accent for emphasis — keep it rare on the page. */
--link: #002BFF; /* inline text links and link-styled controls. */
--secondary: #CBD5E1; /* 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: #1C1917; /* primary-button fill — the main call-to-action color. */
--button-text: #FBFBFC;
--radius: 0px;
--radius-button: 0px;
}