Olipop — Design System
The full decoded design system for Olipop: 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/olipop.
Tokens
Olipop's decoded design system: background #FFF6EA, text #0A0A0B, accent #FFFF7D, link #034638, primary #14433D; type scale h1 20px / h2 24px / body 12px; 4px spacing base; 24px base radius. The single interactive/action color is #FFFF7D — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFF6EA |
| surface | #F0E7DC |
| border | #DAD2C8 |
| text | #0A0A0B |
| text_muted | #67635F |
| primary | #14433D |
| accent | #FFFF7D |
| link | #034638 |
| secondary | #FFF6EA |
| button_bg | #FFFF7D |
| button_text | #034638 |
Using these colors
- Action color
#FFFF7D— the single interactive color; only on things you click or must notice, never large fills. accent,button_bgare all#FFFF7D— one role, not several (the action color).- accent
#FFFF7D— 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
#14433D— a brand color — but the call-to-action uses #FFFF7D, not this. - link
#034638— inline text links and link-styled controls. - secondary
#FFF6EA— 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: Ano
- Body: Helvetica
- h1: 20px
- h2: 24px
- body: 12px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 24px
- button: 50px
Per-section tokens (8)
Export: DESIGN.md
# Olipop — Design System > light, playful, high, tailwind ## Colors | Role | Value | |------|-------| | bg | `#FFF6EA` | | surface | `#F0E7DC` | | border | `#DAD2C8` | | text | `#0A0A0B` | | text_muted | `#67635F` | | primary | `#14433D` | | accent | `#FFFF7D` | | link | `#034638` | | secondary | `#FFF6EA` | | button_bg | `#FFFF7D` | | button_text | `#034638` | **Using these colors** - **Action color** `#FFFF7D` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `button_bg` are all `#FFFF7D` — one role, not several (your action color). - **accent** `#FFFF7D` — 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** `#14433D` — a brand color — but the call-to-action uses #FFFF7D, not this. - **link** `#034638` — inline text links and link-styled controls. - **secondary** `#FFF6EA` — 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: **Ano** _(free fallback: Newsreader)_ - Body: **Helvetica** - h1: 20px - h2: 24px - body: 12px > **Fonts —** Ano may be proprietary — safe free fallback: Newsreader (Google Fonts). Helvetica — system font, no web load needed. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 24px - button: 50px ## Primary button - bg `#FFFF7D` · text `#034638` · radius 50px ## 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 #FFFF7D — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFF6EA;
--color-surface: #F0E7DC;
--color-border: #DAD2C8;
--color-text: #0A0A0B;
--color-text-muted: #67635F;
--color-primary: #14433D; /* a brand color — but the call-to-action uses #FFFF7D, not this. */
--color-accent: #FFFF7D; /* 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: #034638; /* inline text links and link-styled controls. */
--color-secondary: #FFF6EA; /* 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: #FFFF7D; /* primary-button fill — the main call-to-action color. */
--color-button-text: #034638;
/* fonts: Ano may be proprietary — safe free fallback: Newsreader (Google Fonts). Helvetica — system font, no web load needed. */
--font-heading: "Ano", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 20px;
--text-h2: 24px;
--text-body: 12px;
--radius-base: 24px;
--radius-button: 50px;
--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 #FFFF7D — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFF6EA;
--surface: #F0E7DC;
--border: #DAD2C8;
--text: #0A0A0B;
--text-muted: #67635F;
--primary: #14433D; /* a brand color — but the call-to-action uses #FFFF7D, not this. */
--accent: #FFFF7D; /* 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: #034638; /* inline text links and link-styled controls. */
--secondary: #FFF6EA; /* 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: #FFFF7D; /* primary-button fill — the main call-to-action color. */
--button-text: #034638;
--font-heading: "Ano", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 24px;
--radius-button: 50px;
}
/* fonts: Ano may be proprietary — safe free fallback: Newsreader (Google Fonts). Helvetica — system font, no web load needed. */