frontend-ui-ux

Design accessible, mobile-first frontend UI/UX for modern web apps.

12|41|Updated Feb 5, 2026
One-click install
npx skills add https://github.com/pingwu/solo-unicorn --skill frontend-ui-ux-pingwu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: frontend-ui-ux
Source: https://github.com/pingwu/solo-unicorn/tree/main/skills/frontend-ui-ux
Command: npx skills add https://github.com/pingwu/solo-unicorn --skill frontend-ui-ux-pingwu

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Designing interfaces that are fast, accessible, and usable across devices can be time-consuming and error-prone. This Skill helps you adopt a mobile-first mindset, ensure accessibility, and optimize performance while keeping components cohesive.

Core Features & Use Cases

  • Mobile-first design and responsive layouts that scale from small screens to large displays.
  • Accessibility auditing and semantic HTML practices to improve keyboard navigation and screen reader support.
  • Performance-focused CSS and design-system thinking to maintain consistency and speed.

Quick Start

Audit an existing UI for mobile responsiveness and accessibility, then implement a targeted improvement in the next sprint.

Frequently Asked Questions about frontend-ui-ux

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit my web app UI for accessibility and mobile responsiveness?

To audit your UI for accessibility and mobile responsiveness, evaluate semantic HTML structure, keyboard navigation, screen reader support, and responsive scaling from small screens to large displays. This identifies barriers ensuring interfaces are usable across devices.

What's the best way to implement responsive typography that scales across screen sizes?

The best way to implement responsive typography is using the CSS clamp() function. This function allows you to set minimum, preferred, and maximum font sizes, ensuring text scales fluidly across mobile and large displays without breaking layout consistency.

How does mobile-first design improve Core Web Vitals performance?

Mobile-first design improves Core Web Vitals by prioritizing critical rendering paths and performance-focused CSS for small screens. This reduces initial load times and layout shifts, ensuring fast, user-first interfaces across all viewport sizes.

Can I build design-system-consistent components without external dependencies?

Yes, you can build design-system-consistent components without external dependencies. The Skill provides patterns for semantic HTML and CSS authoring to maintain visual cohesion, ensuring components remain cohesive without requiring third-party UI libraries.

Why does my frontend UI need semantic HTML for dark mode support?

Semantic HTML is needed for dark mode support because it provides the structural foundation for accessible theming. Proper semantic elements ensure screen readers correctly interpret content context when visual cues change in dark mode.

When should I not use clamp() for responsive typography in frontend UI?

You should not use clamp() for responsive typography when targeting legacy browsers lacking CSS math function support, or when strict pixel-perfect design requirements demand fixed sizing over fluid scaling. Otherwise, it is safe for modern web apps.