Bear — Design System
The full decoded design system for Bear: 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/bear.
Tokens
Bear's decoded design system: background #FFFFFF, text #444444, accent #DD4C4F, link #456AA3, primary #DD4C4F; type scale h1 51.2px / h2 41.6px / body 22.4px; 4px spacing base; 8px base radius. The single interactive/action color is #DD4C4F — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F3F3F3 |
| border | #E2E2E2 |
| text | #444444 |
| text_muted | #8B8B8B |
| primary | #DD4C4F |
| accent | #DD4C4F |
| link | #456AA3 |
| secondary | #884AA8 |
| button_bg | #DD4C4F |
| button_text | #FFFFFF |
Using these colors
- Action color
#DD4C4F— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#DD4C4F— one role, not several (the action color).- accent
#DD4C4F— 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
#456AA3— inline text links and link-styled controls. - secondary
#884AA8— 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: Bearsansheadline
- Body: Bearsans
- h1: 51.2px
- h2: 41.6px
- body: 22.4px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 8px
Per-section tokens (9)
Export: DESIGN.md
# Bear — Design System > light, modern, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F3F3F3` | | border | `#E2E2E2` | | text | `#444444` | | text_muted | `#8B8B8B` | | primary | `#DD4C4F` | | accent | `#DD4C4F` | | link | `#456AA3` | | secondary | `#884AA8` | | button_bg | `#DD4C4F` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#DD4C4F` — 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`, `button_bg` are all `#DD4C4F` — one role, not several (your action color). - **accent** `#DD4C4F` — 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** `#456AA3` — inline text links and link-styled controls. - **secondary** `#884AA8` — 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: **Bearsansheadline** _(free fallback: Newsreader)_ - Body: **Bearsans** _(free fallback: Newsreader)_ - h1: 51.2px - h2: 41.6px - body: 22.4px > **Fonts —** Bearsansheadline may be proprietary — safe free fallback: Newsreader (Google Fonts). Bearsans 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 `#DD4C4F` · 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 #DD4C4F — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F3F3F3;
--color-border: #E2E2E2;
--color-text: #444444;
--color-text-muted: #8B8B8B;
--color-primary: #DD4C4F; /* primary brand / action color. */
--color-accent: #DD4C4F; /* 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: #456AA3; /* inline text links and link-styled controls. */
--color-secondary: #884AA8; /* 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: #DD4C4F; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Bearsansheadline may be proprietary — safe free fallback: Newsreader (Google Fonts). Bearsans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Bearsansheadline", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Bearsans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 51.2px;
--text-h2: 41.6px;
--text-body: 22.4px;
--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 #DD4C4F — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F3F3F3;
--border: #E2E2E2;
--text: #444444;
--text-muted: #8B8B8B;
--primary: #DD4C4F; /* primary brand / action color. */
--accent: #DD4C4F; /* 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: #456AA3; /* inline text links and link-styled controls. */
--secondary: #884AA8; /* 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: #DD4C4F; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Bearsansheadline", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Bearsans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 8px;
}
/* fonts: Bearsansheadline may be proprietary — safe free fallback: Newsreader (Google Fonts). Bearsans may be proprietary — safe free fallback: Newsreader (Google Fonts). */