MozaikaDesign system

Y2K Templates — Design System

light · playful · high · react · confidence 95%

A cohesive open-source template design system — playful light theme with Poppins headings.

Open in Mozaika →

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/y2k-templates.

Tokens

Y2K Templates's decoded design system: background #CCCFFA, text #2d241b, accent #2d241b, link #2d241b, primary #2d241b; type scale h1 31px / h2 25px / body 16px; 4px spacing base; 0px base radius. The single interactive/action color is #2d241b — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#CCCFFA
surface#C2C4EC
border#B4B5D8
text#2d241b
text_muted#69646F
primary#2d241b
accent#2d241b
link#2d241b
secondary#FFFFFF
button_bg#2d241b
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Motion

Micro-interactions run at 100ms (dominant).

Per-section tokens (3)

Export: DESIGN.md

# Y2K Templates — Design System

> light, playful, high, react

A cohesive open-source template design system — playful light theme with Poppins headings.

## Colors

| Role | Value |
|------|-------|
| bg | `#CCCFFA` |
| surface | `#C2C4EC` |
| border | `#B4B5D8` |
| text | `#2d241b` |
| text_muted | `#69646F` |
| primary | `#2d241b` |
| accent | `#2d241b` |
| link | `#2d241b` |
| secondary | `#FFFFFF` |
| button_bg | `#2d241b` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#2d241b` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary`, `accent`, `link`, `button_bg` are all `#2d241b` — one role, not several (your action color).
- **accent** `#2d241b` — 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.
- **secondary** `#FFFFFF` — 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: **Poppins**
- Body: **Poppins**
- h1: 31px
- h2: 25px
- body: 16px

> **Fonts —** Poppins — free, on Google.

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px

## Radius
- base: 0px
- button: 0px

## Primary button
- bg `#2d241b` · text `#FFFFFF` · radius 0px

## Motion
- durations: 100ms (dominant) · 250ms

Micro-interactions use the dominant duration + easing; nothing on the page animates slower than the longest duration above — don't invent springier motion.

## 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.

---

> **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/y2k-templates

Export: Tailwind v4 (@theme)

@theme {
  /* action color #2d241b — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #CCCFFA;
  --color-surface: #C2C4EC;
  --color-border: #B4B5D8;
  --color-text: #2d241b;
  --color-text-muted: #69646F;
  --color-primary: #2d241b;  /* ≈ the text color — a foreground/text color, not an action color (action = #2d241b). */
  --color-accent: #2d241b;  /* 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: #2d241b;  /* inline text links — shares the action color. */
  --color-secondary: #FFFFFF;  /* 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: #2d241b;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Poppins — free, on Google. */
  --font-heading: "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 31px;
  --text-h2: 25px;
  --text-body: 16px;
  --radius-base: 0px;
  --radius-button: 0px;
  --duration-fast: 100ms;  /* use: duration-[var(--duration-fast)] */
  --duration-base: 250ms;
  --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 #2d241b — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #CCCFFA;
  --surface: #C2C4EC;
  --border: #B4B5D8;
  --text: #2d241b;
  --text-muted: #69646F;
  --primary: #2d241b;  /* ≈ the text color — a foreground/text color, not an action color (action = #2d241b). */
  --accent: #2d241b;  /* 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: #2d241b;  /* inline text links — shares the action color. */
  --secondary: #FFFFFF;  /* 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: #2d241b;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 0px;
  --duration-fast: 100ms;
  --duration-base: 250ms;
}
/* fonts: Poppins — free, on Google. */