Partykit — Design System
The full decoded design system for Partykit: 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/partykit.
Tokens
Partykit's decoded design system: background #FFFFFF, text #0A0A0B, accent #FF0F0F, link #FF0F0F, primary #9CA3AF; type scale h1 16px / h2 70px / body 70px; 4px spacing base; 0px base radius. The single interactive/action color is #FF0F0F — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F0 |
| border | #DADADA |
| text | #0A0A0B |
| text_muted | #676767 |
| primary | #9CA3AF |
| accent | #FF0F0F |
| link | #FF0F0F |
| button_bg | #FF0F0F |
| button_text | #FFFFFF |
Using these colors
- Action color
#FF0F0F— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#FF0F0F— one role, not several (the action color).- accent
#FF0F0F— 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
#9CA3AF— a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FF0F0F).
Typography
- Heading: Noto Sans
- Body: Noto Sans
- h1: 16px
- h2: 70px
- body: 70px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 32px
Per-section tokens (8)
- Hero
- Feature
- Gallery / Showcase
- Feature
- Testimonial / Social Proof
- Pricing / Plans
- Gallery / Showcase
- CTA / Sign-up
Export: DESIGN.md
# Partykit — Design System > light, modern, high, custom ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#DADADA` | | text | `#0A0A0B` | | text_muted | `#676767` | | primary | `#9CA3AF` | | accent | `#FF0F0F` | | link | `#FF0F0F` | | button_bg | `#FF0F0F` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#FF0F0F` — 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`, `button_bg` are all `#FF0F0F` — one role, not several (your action color). - **accent** `#FF0F0F` — 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** `#9CA3AF` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FF0F0F). ## Typography - Heading: **Noto Sans** _(free fallback: Newsreader)_ - Body: **Noto Sans** _(free fallback: Newsreader)_ - h1: 16px - h2: 70px - body: 70px > **Fonts —** Noto Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 0px - button: 32px ## Primary button - bg `#FF0F0F` · text `#FFFFFF` · radius 32px ## 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 #FF0F0F — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DADADA;
--color-text: #0A0A0B;
--color-text-muted: #676767;
--color-primary: #9CA3AF; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FF0F0F). */
--color-accent: #FF0F0F; /* 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: #FF0F0F; /* inline text links — shares the action color. */
--color-button-bg: #FF0F0F; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Noto Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Noto Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Noto Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 16px;
--text-h2: 70px;
--text-body: 70px;
--radius-base: 0px;
--radius-button: 32px;
--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 #FF0F0F — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DADADA;
--text: #0A0A0B;
--text-muted: #676767;
--primary: #9CA3AF; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FF0F0F). */
--accent: #FF0F0F; /* 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: #FF0F0F; /* inline text links — shares the action color. */
--button-bg: #FF0F0F; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Noto Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Noto Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 32px;
}
/* fonts: Noto Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */