Levels — Design System
Levels renders metabolic health at poster scale: TT Hoves at 102px/500 ('See how food affects your health.') in white over macro food photography, 14-16px working text, zero-radius text CTAs in clinical teal #1D7D6C. Glucose curves and app screens supply the science while the oversized grotesque supplies the conviction — biometrics presented like a health manifesto.
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/levels.
Tokens
Levels's decoded design system: background #FFFFFF, text #131413, accent #9FC5BC, link #9FC5BC, primary #1D7D6C; type scale h1 102px / h2 56px / body 16px; 6px spacing base; 0px base radius. The single interactive/action color is #131413 — 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 | #DBDBDB |
| text | #131413 |
| text_muted | #6C6D6C |
| primary | #1D7D6C |
| accent | #9FC5BC |
| link | #9FC5BC |
| secondary | #2650CB |
| button_bg | #131413 |
| button_text | #FFFFFF |
Using these colors
- Action color
#131413— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#9FC5BC— one role, not several (the action color).- accent
#9FC5BC— accent for emphasis — keep it rare on the page. - primary
#1D7D6C— a brand color — but the call-to-action uses #131413, not this. - secondary
#2650CB— 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: TT Hoves
- Body: TT Hoves
- h1: 102px
- h2: 56px
- body: 16px
Spacing
- base unit: 6px
- scale: 3px, 6px, 9px, 12px, 18px, 24px, 36px, 48px
Radii
- base: 0px
- button: 8px
Per-section tokens (10)
- Hero
- Feature
- Feature
- Feature
- Bento Grid
- Feature
- Stats / Metrics
- Testimonial / Social Proof
- Pricing / Plans
- CTA / Sign-up
Export: DESIGN.md
# Levels — Design System
> light, modern, medium, tailwind
Levels renders metabolic health at poster scale: TT Hoves at 102px/500 ('See how food affects your health.') in white over macro food photography, 14-16px working text, zero-radius text CTAs in clinical teal #1D7D6C. Glucose curves and app screens supply the science while the oversized grotesque supplies the conviction — biometrics presented like a health manifesto.
## Colors
| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F0F0` |
| border | `#DBDBDB` |
| text | `#131413` |
| text_muted | `#6C6D6C` |
| primary | `#1D7D6C` |
| accent | `#9FC5BC` |
| link | `#9FC5BC` |
| secondary | `#2650CB` |
| button_bg | `#131413` |
| button_text | `#FFFFFF` |
**Using these colors**
- **Action color** `#131413` — 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 `#9FC5BC` — one role, not several.
- **accent** `#9FC5BC` — accent for emphasis — keep it rare on the page.
- **primary** `#1D7D6C` — a brand color — but the call-to-action uses #131413, not this.
- **secondary** `#2650CB` — 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: **TT Hoves** _(free fallback: Newsreader)_
- Body: **TT Hoves** _(free fallback: Newsreader)_
- h1: 102px
- h2: 56px
- body: 16px
> **Fonts —** TT Hoves may be proprietary — safe free fallback: Newsreader (Google Fonts).
## Spacing
- base unit: 6px
- scale: 3px, 6px, 9px, 12px, 18px, 24px, 36px, 48px
## Radius
- base: 0px
- button: 8px
## Primary button
- bg `#131413` · 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 #131413 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DBDBDB;
--color-text: #131413;
--color-text-muted: #6C6D6C;
--color-primary: #1D7D6C; /* a brand color — but the call-to-action uses #131413, not this. */
--color-accent: #9FC5BC; /* accent for emphasis — keep it rare on the page. */
--color-link: #9FC5BC; /* fails contrast on the background (~1.9: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: #2650CB; /* 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: #131413; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: TT Hoves may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "TT Hoves", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "TT Hoves", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 102px;
--text-h2: 56px;
--text-body: 16px;
--radius-base: 0px;
--radius-button: 8px;
--spacing-1: 3px;
--spacing-2: 6px;
--spacing-3: 9px;
--spacing-4: 12px;
--spacing-5: 18px;
--spacing-6: 24px;
--spacing-7: 36px;
--spacing-8: 48px;
}Export: CSS variables
:root {
/* action color #131413 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DBDBDB;
--text: #131413;
--text-muted: #6C6D6C;
--primary: #1D7D6C; /* a brand color — but the call-to-action uses #131413, not this. */
--accent: #9FC5BC; /* accent for emphasis — keep it rare on the page. */
--link: #9FC5BC; /* fails contrast on the background (~1.9:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #2650CB; /* 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: #131413; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "TT Hoves", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "TT Hoves", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 8px;
}
/* fonts: TT Hoves may be proprietary — safe free fallback: Newsreader (Google Fonts). */