Defines named visual aesthetic, selects typography pairings, builds CSS token systems, adds entrance animations for high-design-quality pages. Use when user asks to design landing page, style marketing site, create distinctive UI theme, pick fonts, or add CSS animations — specifically when visual polish, brand identity matter rather than generic component scaffolding.
77
96%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Advisory
Suggest reviewing before use
:root CSS custom properties for colors, spacing, radii@keyframes entrance animations wrapped in 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, extended token sets in COMPONENTS.md.
High-level design principles, full example constraints live in REFERENCE.md. Keep this checklist as short reminder:
prefers-reduced-motion; keep critical animations under 500ms.Every design must have one unforgettable detail. No two designs should look alike.
Recommended typography pairings, extended catalogue in REFERENCE.md. For production, always include metric-preserving fallback chain (e.g., .Fraunces., .Georgia., serif).
Load project-consistency skill for full Foundation Phase pattern, prompt templates.
:root tokens; avoid ad-hoc values.prefers-reduced-motion respected; key animations <500ms.7a69a05
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.