Defines a named visual aesthetic, selects typography pairings, builds CSS token systems, and adds entrance animations for high-design-quality pages. Use when the user asks to design a landing page, style a marketing site, create a distinctive UI theme, pick fonts, or add CSS animations — specifically when visual polish and brand identity matter rather than generic component scaffolding.
100
100%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
:root CSS custom properties for colors, spacing, and radii@keyframes entrance animations wrapped in a reduced-motion guard/* Aesthetic: minimal neon */
:root {
--color-bg: #0a0a0f; --color-surface: #141420;
--color-text: #e8e6e3; --color-accent: #6366f1;
--space-sm: 8px; --space-md: 16px; --space-lg: 32px;
--radius-md: 8px;
--font-heading: 'Fraunces', 'Georgia', serif;
--font-body: 'Inter', system-ui, sans-serif;
}
@keyframes fade-up {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
.hero__title { animation: fade-up 0.4s ease-out both; }
}Card patterns, hero animations, and extended token sets are in COMPONENTS.md.
High-level design principles and the full set of example constraints live in REFERENCE.md. Keep this checklist as a short reminder:
prefers-reduced-motion and keep critical animations under 500ms.Every design must have one unforgettable detail. No two designs should look alike.
Recommended typography pairings and an extended catalogue are in REFERENCE.md. For production, always include a metric-preserving fallback chain (e.g., 'Fraunces', 'Georgia', serif).
Load the project-consistency skill for the full Foundation Phase pattern and prompt templates.
:root tokens; avoid ad-hoc values.prefers-reduced-motion respected; key animations <500ms.f5c8508
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.