MozaikaDesign system

Sentry — Design System

dark · professional · medium · custom · confidence 70%

Sentry debugs in deep space: a violet #1F1633 cosmos with a 3D astronaut hero, Dammit Sans slamming 88px/700 headlines, and hot pink-to-orange gradients tracing the path from error to fix. Rubik keeps the 16px body grounded while connected panels — traces, replays, profiles — link up like a star chart of the debugging flow. Code snippets sit in every other card, badges and mascots keep it punk rather than corporate; it is enterprise tooling wearing a band t-shirt.

Open in Mozaika →

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/sentry.

Tokens

Sentry's decoded design system: background #1F1633, text #ECECEE, accent #6A5FC1, link #6A5FC1, primary #6A5FC1; type scale h1 88px / h2 60px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #6A5FC1 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#1F1633
surface#2B223E
border#3D364F
text#ECECEE
text_muted#9E9AA6
primary#6A5FC1
accent#6A5FC1
link#6A5FC1
secondary#FF45A8
button_bg#6A5FC1
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (16)

Export: DESIGN.md

# Sentry — Design System

> dark, professional, medium, custom

Sentry debugs in deep space: a violet #1F1633 cosmos with a 3D astronaut hero, Dammit Sans slamming 88px/700 headlines, and hot pink-to-orange gradients tracing the path from error to fix. Rubik keeps the 16px body grounded while connected panels — traces, replays, profiles — link up like a star chart of the debugging flow. Code snippets sit in every other card, badges and mascots keep it punk rather than corporate; it is enterprise tooling wearing a band t-shirt.

## Colors

| Role | Value |
|------|-------|
| bg | `#1F1633` |
| surface | `#2B223E` |
| border | `#3D364F` |
| text | `#ECECEE` |
| text_muted | `#9E9AA6` |
| primary | `#6A5FC1` |
| accent | `#6A5FC1` |
| link | `#6A5FC1` |
| secondary | `#FF45A8` |
| button_bg | `#6A5FC1` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#6A5FC1` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary`, `accent`, `link`, `button_bg` are all `#6A5FC1` — one role, not several (your action color).
- **accent** `#6A5FC1` — 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.
- **secondary** `#FF45A8` — 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: **Dammit Sans** _(free fallback: Newsreader)_
- Body: **Rubik** _(free fallback: Newsreader)_
- h1: 88px
- h2: 60px
- body: 16px

> **Fonts —** Dammit Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). Rubik may be proprietary — safe free fallback: Newsreader (Google Fonts).

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px

## Radius
- base: 8px
- button: 8px

## Primary button
- bg `#6A5FC1` · text `#FFFFFF` · radius 8px

## 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 #6A5FC1 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #1F1633;
  --color-surface: #2B223E;
  --color-border: #3D364F;
  --color-text: #ECECEE;
  --color-text-muted: #9E9AA6;
  --color-primary: #6A5FC1;  /* primary brand / action color. */
  --color-accent: #6A5FC1;  /* 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: #6A5FC1;  /* inline text links — shares the action color. */
  --color-secondary: #FF45A8;  /* 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: #6A5FC1;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Dammit Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). Rubik may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Dammit Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Rubik", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 88px;
  --text-h2: 60px;
  --text-body: 16px;
  --radius-base: 8px;
  --radius-button: 8px;
  --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 #6A5FC1 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #1F1633;
  --surface: #2B223E;
  --border: #3D364F;
  --text: #ECECEE;
  --text-muted: #9E9AA6;
  --primary: #6A5FC1;  /* primary brand / action color. */
  --accent: #6A5FC1;  /* 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: #6A5FC1;  /* inline text links — shares the action color. */
  --secondary: #FF45A8;  /* 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: #6A5FC1;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Dammit Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Rubik", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 8px;
}
/* fonts: Dammit Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). Rubik may be proprietary — safe free fallback: Newsreader (Google Fonts). */