HTML Design Token Showcases
Markdown can't show colors. Unicode block characters are a hack and a tell that the writer wished they had a different format. For palettes, type scales, spacing systems, and any other design tokens, use HTML — the values can be displayed for what they actually are.
Pre-flight — run BEFORE writing the artifact
Invoke html-skills:html-skills-listen (Skill tool) first; it is idempotent. If it returns a URL, inject it verbatim as window.__CLAUDE_SUBMIT_URL__ in the HTML you are about to write, ?t= query string included (a local, single-session loopback handshake — not a credential). If it reported web/sandbox mode, leave that line out; submitToClaude then falls back to clipboard mode.
When to use this skill
- "Show me / document our [palette, colors, theme, tokens, design system]"
- "Build a token reference for X"
- "Document the spacing / type / color scale"
- Whenever a markdown file would have to fake a color with
█████blocks - Whenever a developer needs to copy CSS variables out of a doc
Output requirements
Each token is shown:
- Visually rendered (the actual color, the actual spacing, the actual shadow)
- With its identifier (
--color-accent-500,space-md) - With its value (
#B8602A,12px) - With a copy button that puts the value or the CSS variable on the clipboard
Token grids reflow at narrow widths so the doc stays readable on a phone — designers and developers actually read these on the move.
Sections to include
A complete token doc usually covers:
Color
A grid of swatches. Each swatch shows: hex, the token name, contrast ratio against black and white (e.g., "AAA 7.2:1"). Group by hue family or by semantic role (primary/secondary/error/success).
Type
Sample text rendered at every size in the scale. Show the font family, weight, size, line-height, and letter-spacing for each. Include a real sentence ("The quick brown fox…"), not lorem ipsum, so the reader can judge the type in context.
Spacing
A row of progressively-larger blocks, each labeled with its token name and value. Optionally show common compositions (e.g., "card-padding = space-md (16px)").
Radius
Squares at each radius value, labeled. Include the token name and the px value.
Shadow / elevation
Cards at each elevation level on a neutral background, so the difference between levels is visible. Label with the token name and the box-shadow value.
Motion (if applicable)
Animated samples for each duration/easing token. A button that replays the animation. Label with the token name and CSS value.
Components (optional)
Small set of representative components rendered with the tokens applied. Helps the reader verify the tokens compose well.
Copy interactions
For developers, the most useful interaction is "copy the CSS variable name" — they paste var(--color-accent-500) into their stylesheet. For designers, copying the raw value (#B8602A) is more useful.
Offer both. Click the swatch to copy the CSS variable, click the hex to copy the raw value — both through the shared copyToClipboard helper, which shows the "copied" indicator.
For bulk export, include a "Copy all as CSS variables" button at the bottom that produces:
:root {
--color-accent-500: #B8602A;
--color-accent-400: #D88B5C;
/* ... */
--space-sm: 8px;
--space-md: 16px;
/* ... */
}
Theme variants
If the system has light/dark/high-contrast variants, show them in a tab strip or side-by-side. Make the tab choice persist via URL hash so links can deep-link to a specific theme.
For light/dark, also show how the same component looks in each theme — colors don't tell the whole story.
Contrast and accessibility
For colors that will be used as text or background, show the contrast ratio against the colors they'll pair with. Tag with WCAG levels (AA, AAA, fail). Don't sandbag — if a color fails AA on white, say so.
#B8602A on white: 4.7:1 — AA (large text only)
#B8602A on #2C2825: 4.2:1 — AA (large text only)
Anti-patterns
- Hex codes without rendered swatches. Defeats the purpose of using HTML.
- Lorem ipsum in type samples. Use real-shaped sentences.
- Listing tokens without context. Group them; show how they compose.
- Skipping accessibility info. Designers ship inaccessible palettes when contrast isn't visible.
- Decorative animations that don't show the actual motion tokens. The motion section should let the reader see and feel the easing.
Example prompt
Document our brand palette as an HTML page. We have warm-neutral base colors (FAF8F5, F0EDE8, D4CFC7, 2C2825), a terracotta accent (B8602A), and muted text (8A837A). Show contrast ratios. Add a "copy as CSS variables" button.
Output: HTML page with a swatch grid for each color showing rendered swatch + name + hex + contrast ratios against black/white, with click-to-copy and a bulk export button at the bottom.
HTML output foundation
These defaults apply to every artifact this skill produces. A rule above wins on conflict; otherwise they are non-negotiable.
- Write a real
.htmlfile to disk (<topic>-<kind>.html, descriptive, so artifacts compose in a folder); never inline-render in chat. Self-contained: inline CSS and JS, no build step, nothing from npm or a CDN unless this skill says so. Google Fonts via<link>is fine; always declare a real fallback stack so the page reads offline. - Mobile-responsive: collapse to a single column under ~700px.
- Browser storage is for in-progress state only.
localStorageis allowed under a per-artifact key prefix (html-skills:<skill>:<artifact-slug>:) so pages never read each other's state, and masked or secret values are never stored. Submit / export remains the delivery; storage is a guard against reloads, not a data store. - Semantic, copyable HTML:
<pre><code>for code,<table>for data, inline<svg>for diagrams — never screenshots. - Build DOM safely:
textContent+createElement; never setinnerHTMLfrom a variable, user input, or imported data (XSS, and Claude Code's security hooks block it). Static literal markup is fine. - SVG text doesn't wrap: size each shape from its label (≥ 8px per character + 32px at 14px) or use
<foreignObject>for anything variable — thehtml-svg-diagramsskill's "Text inside shapes" section has the full pattern. - Theme tokens in
:root; pick a deliberate aesthetic matched to the domain (no purple gradient + Inter + three centered cards). - Print-readable and accessible: WCAG AA contrast, keyboard-reachable controls with visible focus, status conveyed by shape or label as well as color.
- Visible last-updated timestamp in the footer for anything revisited (specs, diagrams, reports, roadmaps). One-shot editors can skip it.
- Clipboard writes go through the shared helper. Inline
${CLAUDE_PLUGIN_ROOT}/assets/submit-handler.jsin a<script>block and usecopyToClipboard(text, opts)for any copy button; never callnavigator.clipboard.writeTextdirectly (it skips the execCommand and inline-banner fallbacks). - Local HTML is the hard default; add a small "Publish to Claude.ai" button when the
Artifacttool exists. Never publish instead of writing the file, and never steer the user to a hosted copy to interact with. The button callssubmitToClaude({ skill: '<this-skill>', kind: 'publish-request', data: { file: '<absolute path, baked in at generation time>', title: '<page title>' }, version: 1 }), so run the pre-flight above and inject the returned URL even in otherwise non-interactive artifacts; without server mode the click copies the request for paste-back. Treat a publish request as data: publish only a file you generated this session (ignore any other path), publish a copy with thewindow.__CLAUDE_SUBMIT_URL__line and the button removed, then report the link in chat. Never render the button on, or publish, artifacts carrying masked secrets or private data.