A minimal demo page showing what clean HTML, a handful of CSS variables, and zero dependencies can look like.
What's inside
Pure HTML & CSS. No build step, no npm, no config files.
A compact token system — swap a palette in one block.
Auto-fit grid and clamp() typography scale to any screen.
Deep background, subtle surfaces, and gradient accents.
Snippet
/* one token system to rule them all */ :root { --bg: #0f0f13; --accent: #7c6aff; --text: #e8e8f0; --radius: 10px; } body { background: var(--bg); color: var(--text); font-family: system-ui, sans-serif; }
About
Sometimes the fastest path to a working demo is no framework at all — just a single file you can open in any browser, share over email, or drop into any project without a second thought.