Commercial Type — Design System
The full decoded design system for Commercial Type: 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/commercial-type.
Tokens
Commercial Type's decoded design system: background #FFFFFF, text #000000, accent #38A4FA, link #38A4FA, primary #E2F2FF; type scale h1 22.08px / h2 15.456px / body 22.08px; 12px spacing base; 0px base radius. The single interactive/action color is #323232 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #EFEFEF |
| border | #D8D8D8 |
| text | #000000 |
| text_muted | #606060 |
| primary | #E2F2FF |
| accent | #38A4FA |
| link | #38A4FA |
| secondary | #9D968E |
| button_bg | #323232 |
| button_text | #FFFFFF |
Using these colors
- Action color
#323232— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#38A4FA— one role, not several (the action color).- accent
#38A4FA— accent for emphasis — keep it rare on the page. - primary
#E2F2FF— a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #323232). - secondary
#9D968E— 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: Styrene UI B
- Body: Styrene UI A
- h1: 22.08px
- h2: 15.456px
- body: 22.08px
Spacing
- base unit: 12px
- scale: 6px, 12px, 18px, 24px, 36px, 48px, 72px, 96px
Radii
- base: 0px
- button: 0px
Per-section tokens (6)
Export: DESIGN.md
# Commercial Type — Design System > light, professional, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#EFEFEF` | | border | `#D8D8D8` | | text | `#000000` | | text_muted | `#606060` | | primary | `#E2F2FF` | | accent | `#38A4FA` | | link | `#38A4FA` | | secondary | `#9D968E` | | button_bg | `#323232` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#323232` — 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 `#38A4FA` — one role, not several. - **accent** `#38A4FA` — accent for emphasis — keep it rare on the page. - **primary** `#E2F2FF` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #323232). - **secondary** `#9D968E` — 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: **Styrene UI B** _(free fallback: Newsreader)_ - Body: **Styrene UI A** _(free fallback: Newsreader)_ - h1: 22.08px - h2: 15.456px - body: 22.08px > **Fonts —** Styrene UI B may be proprietary — safe free fallback: Newsreader (Google Fonts). Styrene UI A may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 12px - scale: 6px, 12px, 18px, 24px, 36px, 48px, 72px, 96px ## Radius - base: 0px - button: 0px ## Primary button - bg `#323232` · text `#FFFFFF` · 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 #323232 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #EFEFEF;
--color-border: #D8D8D8;
--color-text: #000000;
--color-text-muted: #606060;
--color-primary: #E2F2FF; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #323232). */
--color-accent: #38A4FA; /* accent for emphasis — keep it rare on the page. */
--color-link: #38A4FA; /* fails contrast on the background (~2.7:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--color-secondary: #9D968E; /* 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: #323232; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Styrene UI B may be proprietary — safe free fallback: Newsreader (Google Fonts). Styrene UI A may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Styrene UI B", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Styrene UI A", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 22.08px;
--text-h2: 15.456px;
--text-body: 22.08px;
--radius-base: 0px;
--radius-button: 0px;
--spacing-1: 6px;
--spacing-2: 12px;
--spacing-3: 18px;
--spacing-4: 24px;
--spacing-5: 36px;
--spacing-6: 48px;
--spacing-7: 72px;
--spacing-8: 96px;
}Export: CSS variables
:root {
/* action color #323232 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #EFEFEF;
--border: #D8D8D8;
--text: #000000;
--text-muted: #606060;
--primary: #E2F2FF; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #323232). */
--accent: #38A4FA; /* accent for emphasis — keep it rare on the page. */
--link: #38A4FA; /* fails contrast on the background (~2.7:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #9D968E; /* 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: #323232; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Styrene UI B", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Styrene UI A", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 0px;
}
/* fonts: Styrene UI B may be proprietary — safe free fallback: Newsreader (Google Fonts). Styrene UI A may be proprietary — safe free fallback: Newsreader (Google Fonts). */