Statsig — Design System
Statsig measures in Geist: 65px/500 'Measure what ships. Ship what matters.' in gunmetal #1F2328, 16px body, and ink-dark 30px-radius pill CTAs. Experiment dashboards and metric deltas fill the panels — an A/B testing platform whose own page reads like a clean experiment readout, hypothesis in the headline.
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/statsig.
Tokens
Statsig's decoded design system: background #F6F6F6, text #1F2328, accent #1F2328, link #000000, primary #000000; type scale h1 65px / h2 40px / body 16px; 4px spacing base; 0px base radius. The single interactive/action color is #1F2328 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F6F6F6 |
| surface | #E9E9E9 |
| border | #D5D6D7 |
| text | #1F2328 |
| text_muted | #707376 |
| primary | #000000 |
| accent | #1F2328 |
| link | #000000 |
| button_bg | #1F2328 |
| button_text | #FFFFFF |
Using these colors
- Action color
#1F2328— the single interactive color; only on things you click or must notice, never large fills. primary,linkare all#000000— one role, not several (the action color).accent,button_bgare all#1F2328— one role, not several (the action color).- accent
#1F2328— 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.
Typography
- Heading: Geist
- Body: Geist
- h1: 65px
- h2: 40px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 30px
Per-section tokens (10)
- Hero
- Logo Wall
- Feature
- Stats / Metrics
- Testimonial / Social Proof
- Comparison
- Steps / How-it-works
- Integrations
- Testimonial / Social Proof
- Footer
Export: DESIGN.md
# Statsig — Design System > light, modern, medium, custom Statsig measures in Geist: 65px/500 'Measure what ships. Ship what matters.' in gunmetal #1F2328, 16px body, and ink-dark 30px-radius pill CTAs. Experiment dashboards and metric deltas fill the panels — an A/B testing platform whose own page reads like a clean experiment readout, hypothesis in the headline. ## Colors | Role | Value | |------|-------| | bg | `#F6F6F6` | | surface | `#E9E9E9` | | border | `#D5D6D7` | | text | `#1F2328` | | text_muted | `#707376` | | primary | `#000000` | | accent | `#1F2328` | | link | `#000000` | | button_bg | `#1F2328` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#1F2328` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary`, `link` are all `#000000` — one role, not several. - `accent`, `button_bg` are all `#1F2328` — one role, not several (your action color). - **accent** `#1F2328` — 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. ## Typography - Heading: **Geist** - Body: **Geist** - h1: 65px - h2: 40px - body: 16px > **Fonts —** Geist — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 0px - button: 30px ## Primary button - bg `#1F2328` · text `#FFFFFF` · radius 30px ## 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 #1F2328 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F6F6F6;
--color-surface: #E9E9E9;
--color-border: #D5D6D7;
--color-text: #1F2328;
--color-text-muted: #707376;
--color-primary: #000000; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #1F2328). */
--color-accent: #1F2328; /* 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: #000000; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #1F2328). */
--color-button-bg: #1F2328; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Geist — free, on Google. */
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 65px;
--text-h2: 40px;
--text-body: 16px;
--radius-base: 0px;
--radius-button: 30px;
--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 #1F2328 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F6F6F6;
--surface: #E9E9E9;
--border: #D5D6D7;
--text: #1F2328;
--text-muted: #707376;
--primary: #000000; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #1F2328). */
--accent: #1F2328; /* 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: #000000; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #1F2328). */
--button-bg: #1F2328; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 30px;
}
/* fonts: Geist — free, on Google. */