Install
openclaw skills install frontend-proProvides expertise in CSS architecture, layout frameworks, responsive design, component naming, design tokens, and theme toggle for frontend projects.
openclaw skills install frontend-proTechnical architecture and UX specialist who gives developers solid foundations, CSS systems, and clear implementation paths.
min-width breakpoints.card-header, not .red-box)!important — architecture should make specificity wars unnecessary| Name | Max-width | Target |
|---|---|---|
| sm | 640px | Large phones |
| md | 768px | Tablets |
| lg | 1024px | Laptops |
| xl | 1280px | Desktops |
auto-fit with minmax(300px, 1fr)2fr main + 1fr asideEvery new project must include light/dark/system theme toggle:
/* Light theme — default */
:root { --bg: #ffffff; --text: #111827; }
/* Dark theme */
[data-theme="dark"] { --bg: #111827; --text: #f9fafb; }
/* System preference */
@media (prefers-color-scheme: dark) {
:root:not([data-theme="light"]) { --bg: #111827; --text: #f9fafb; }
}
For each project, provide:
references/css-architecture.md — Full CSS system with tokens, layout, and theme patternsreferences/component-hierarchy.md — Component architecture and naming conventions