June — Design System
The full decoded design system for June: 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/june.
Tokens
June's decoded design system: background #FFFFFF, text #151531, accent #2A2A63, link #2A2A63, primary #151531; type scale h1 60px / h2 40px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #2A2A63 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F2 |
| border | #DBDBE0 |
| text | #151531 |
| text_muted | #6D6D7F |
| primary | #151531 |
| accent | #2A2A63 |
| link | #2A2A63 |
| secondary | #EFF6FF |
Using these colors
- Action color
#2A2A63— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#2A2A63— one role, not several (the action color).- accent
#2A2A63— 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
#151531— ≈ the text color — a foreground/text color, not an action color (action = #2A2A63). - secondary
#EFF6FF— 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: SF Pro Rounded
- Body: SF Pro Rounded
- h1: 60px
- h2: 40px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 8px
Per-section tokens (4)
Export: DESIGN.md
# June — Design System > light, professional, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F2` | | border | `#DBDBE0` | | text | `#151531` | | text_muted | `#6D6D7F` | | primary | `#151531` | | accent | `#2A2A63` | | link | `#2A2A63` | | secondary | `#EFF6FF` | **Using these colors** - **Action color** `#2A2A63` — 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 `#2A2A63` — one role, not several (your action color). - **accent** `#2A2A63` — 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** `#151531` — ≈ the text color — a foreground/text color, not an action color (action = #2A2A63). - **secondary** `#EFF6FF` — 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: **SF Pro Rounded** _(free fallback: Nunito Sans)_ - Body: **SF Pro Rounded** _(free fallback: Nunito Sans)_ - h1: 60px - h2: 40px - body: 16px > **Fonts —** SF Pro Rounded is proprietary — closest free match: Nunito Sans (Google). Load Nunito Sans; keep SF Pro Rounded first so licensed users still get it. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## 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 #2A2A63 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F2;
--color-border: #DBDBE0;
--color-text: #151531;
--color-text-muted: #6D6D7F;
--color-primary: #151531; /* ≈ the text color — a foreground/text color, not an action color (action = #2A2A63). */
--color-accent: #2A2A63; /* 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: #2A2A63; /* inline text links — shares the action color. */
--color-secondary: #EFF6FF; /* 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: SF Pro Rounded is proprietary — closest free match: Nunito Sans (Google). Load Nunito Sans; keep SF Pro Rounded first so licensed users still get it. */
--font-heading: "SF Pro Rounded", "Nunito Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "SF Pro Rounded", "Nunito Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 60px;
--text-h2: 40px;
--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 #2A2A63 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F2;
--border: #DBDBE0;
--text: #151531;
--text-muted: #6D6D7F;
--primary: #151531; /* ≈ the text color — a foreground/text color, not an action color (action = #2A2A63). */
--accent: #2A2A63; /* 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: #2A2A63; /* inline text links — shares the action color. */
--secondary: #EFF6FF; /* 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: "SF Pro Rounded", "Nunito Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "SF Pro Rounded", "Nunito Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 8px;
}
/* fonts: SF Pro Rounded is proprietary — closest free match: Nunito Sans (Google). Load Nunito Sans; keep SF Pro Rounded first so licensed users still get it. */