Deepnote — Design System
Deepnote mixes two display voices: Bricolage Grotesque at 62px/700 in slate-blue #283849 for the headline, Degular at 60px for section statements, and Inter at 16px with link-blue #146EFE accents in the body. Notebook UI with live charts anchors every claim — a data workspace that art-directs like a modern journal while staying grid-strict where the code lives.
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/deepnote.
Tokens
Deepnote's decoded design system: background #FFFFFF, text #606F85, accent #146EFE, link #146EFE, primary #606F85; type scale h1 62px / h2 60px / body 14px; 6px spacing base; 8px base radius. The single interactive/action color is #146EFE — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F5F6F7 |
| border | #E7E9EC |
| text | #606F85 |
| text_muted | #9CA5B3 |
| primary | #606F85 |
| accent | #146EFE |
| link | #146EFE |
| secondary | #DDE4EE |
Using these colors
- Action color
#146EFE— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#146EFE— one role, not several (the action color).- accent
#146EFE— 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
#606F85— ≈ the text color — a foreground/text color, not an action color (action = #146EFE). - secondary
#DDE4EE— 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: Bricolage Grotesque
- Body: Inter
- h1: 62px
- h2: 60px
- body: 14px
Spacing
- base unit: 6px
- scale: 3px, 6px, 9px, 12px, 18px, 24px, 36px, 48px
Radii
- base: 8px
- button: 8px
Per-section tokens (10)
Export: DESIGN.md
# Deepnote — Design System > light, professional, medium, chakra Deepnote mixes two display voices: Bricolage Grotesque at 62px/700 in slate-blue #283849 for the headline, Degular at 60px for section statements, and Inter at 16px with link-blue #146EFE accents in the body. Notebook UI with live charts anchors every claim — a data workspace that art-directs like a modern journal while staying grid-strict where the code lives. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F5F6F7` | | border | `#E7E9EC` | | text | `#606F85` | | text_muted | `#9CA5B3` | | primary | `#606F85` | | accent | `#146EFE` | | link | `#146EFE` | | secondary | `#DDE4EE` | **Using these colors** - **Action color** `#146EFE` — 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 `#146EFE` — one role, not several (your action color). - **accent** `#146EFE` — 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** `#606F85` — ≈ the text color — a foreground/text color, not an action color (action = #146EFE). - **secondary** `#DDE4EE` — 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: **Bricolage Grotesque** - Body: **Inter** - h1: 62px - h2: 60px - body: 14px > **Fonts —** Bricolage Grotesque — free, on Google. Inter — free, on Google. ## Spacing - base unit: 6px - scale: 3px, 6px, 9px, 12px, 18px, 24px, 36px, 48px ## Radius - base: 8px - button: 8px ## Primary button - bg `None` · text `None` · radius None ## 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 #146EFE — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F5F6F7;
--color-border: #E7E9EC;
--color-text: #606F85;
--color-text-muted: #9CA5B3;
--color-primary: #606F85; /* ≈ the text color — a foreground/text color, not an action color (action = #146EFE). */
--color-accent: #146EFE; /* 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: #146EFE; /* inline text links — shares the action color. */
--color-secondary: #DDE4EE; /* 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. */
/* fonts: Bricolage Grotesque — free, on Google. Inter — free, on Google. */
--font-heading: "Bricolage Grotesque", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 62px;
--text-h2: 60px;
--text-body: 14px;
--radius-base: 8px;
--radius-button: 8px;
--spacing-1: 3px;
--spacing-2: 6px;
--spacing-3: 9px;
--spacing-4: 12px;
--spacing-5: 18px;
--spacing-6: 24px;
--spacing-7: 36px;
--spacing-8: 48px;
}Export: CSS variables
:root {
/* action color #146EFE — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F5F6F7;
--border: #E7E9EC;
--text: #606F85;
--text-muted: #9CA5B3;
--primary: #606F85; /* ≈ the text color — a foreground/text color, not an action color (action = #146EFE). */
--accent: #146EFE; /* 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: #146EFE; /* inline text links — shares the action color. */
--secondary: #DDE4EE; /* 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. */
--font-heading: "Bricolage Grotesque", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 8px;
}
/* fonts: Bricolage Grotesque — free, on Google. Inter — free, on Google. */