UI/UX Design
Name: ui-ux-design
Description: Modern UI/UX design principles, patterns, and best practices for web and mobile applications. Use when building user interfaces, designing layouts, choosing color palettes, implementing responsive design, ensuring accessibility (WCAG), or creating beautiful modern applications. Includes 2026 design trends, Tailwind CSS patterns, Shadcn/ui integration, micro-interactions, and mobile-first responsive design.
When to Use This Skill
Activate this skill when:
- Building or designing web/mobile interfaces
- Choosing colors, typography, or layout systems
- Implementing responsive design (mobile-first)
- Ensuring accessibility compliance (WCAG 2.2)
- Setting up Shadcn/ui + Tailwind CSS projects
- Creating micro-interactions and animations
- Reviewing UI/UX decisions before coding
Core Design Principles
1. Mobile-First Always
- Start with 320px width (smallest phone)
- Breakpoints: 576px (phone), 768px (tablet), 992px (laptop), 1200px (desktop)
- Single-column default, expand only when space allows
2. Visual Hierarchy
Guide user attention using:
- Size: Larger = more important
- Color: Bright/contrasting = attention
- Whitespace: More space = emphasis
- Proximity: Related items grouped together
- Contrast: Dark on light or light on dark (4.5:1 minimum for text)
3. Whitespace is Your Weapon
- Space elements in multiples of 8px (8, 16, 24, 32, 48, 64)
- Breathing room between sections: 48-64px minimum
- Padding inside cards: 24-32px
Quick Reference
Color System
Build a primary color scale (50-900):
- Primary: Brand color (CTAs, links, active states)
- Neutrals: Grays 50-900 (text, backgrounds, borders)
- Semantic: Success (green), Error (red), Warning (yellow/orange)
Tools: Huevy.app, Coolors.co, Adobe Color
Typography Scale (8px baseline)
text-xs: 12px / 16px line-height
text-sm: 14px / 20px
text-base: 16px / 24px (body default)
text-lg: 18px / 28px
text-xl: 20px / 28px
text-2xl: 24px / 32px
text-3xl: 30px / 36px (section headers)
text-4xl: 36px / 40px
text-5xl: 48px / 1 (hero titles)
Font pairing: 2 fonts max (sans-serif for UI, optional serif for headings)
Layout Patterns
- CSS Grid: 2D layouts (page structure)
- Flexbox: 1D layouts (component internals)
- Auto-fit grid:
repeat(auto-fit, minmax(280px, 1fr)) (no media queries!)
Micro-Interactions
- Hover: Scale 1.05x (buttons feel clickable)
- Click: Scale 0.95x (tactile feedback)
- Duration: 0.2-0.3s max (keep it subtle)
- Animate only:
transform and opacity (GPU accelerated)
Accessibility (WCAG 2.2)
- Text contrast: 4.5:1 minimum (normal text), 3:1 (large text)
- UI components: 3:1 contrast minimum
- Keyboard navigation: Tab order logical, focus states visible (3:1 contrast)
- ARIA labels: Always provide for buttons, images, interactive elements
Shadcn/ui + Tailwind Stack
Setup (Next.js)
npx create-next-app@latest project-name --typescript --tailwind --app
cd project-name
npx shadcn@latest init
Choose: Style (Default), Base color (Blue or custom), CSS variables (Yes)
Adding Components
npx shadcn@latest add button
npx shadcn@latest add card
npx shadcn@latest add dialog
npx shadcn@latest add calendar
Components appear in components/ui/ — you own the code, customize freely.
Tailwind Best Practices
- Use design tokens (not arbitrary values):
p-4 not p-[17px]
- Responsive utilities:
w-full md:w-1/2 lg:w-1/3
- Dark mode:
dark:bg-gray-900 dark:text-white
Pre-Build Checklist
Before writing code, confirm:
Inspiration Sources
Study these products:
- Linear (linear.app) — Best keyboard-first UI, subtle animations
- Stripe Dashboard — Clean data visualization, perfect spacing
- Vercel — Minimalist, fast, modern gradients
- Notion — Intuitive drag-and-drop, clear hierarchy
Tools:
- Figma (mockups before coding)
- WebAIM Contrast Checker (accessibility)
- Coolors/Huevy (color palettes)
The 5 Laws of Beautiful UI
- Contrast creates hierarchy (big vs small, dark vs light)
- Whitespace creates calm (never fear empty space)
- Consistency builds trust (same patterns repeated)
- Feedback confirms action (animations, success messages)
- Accessibility includes everyone (contrast, keyboard, screen readers)
Full Reference
For comprehensive deep-dives (component patterns, animation examples, responsive grid techniques), see UI_UX_MASTER_GUIDE.md in this skill directory.
Last Updated: 2026-02-05
1---2name: ui-ux-design3description: UI/UX Design4---5# UI/UX Design67**Name:** ui-ux-design 8**Description:** Modern UI/UX design principles, patterns, and best practices for web and mobile applications. Use when building user interfaces, designing layouts, choosing color palettes, implementing responsive design, ensuring accessibility (WCAG), or creating beautiful modern applications. Includes 2026 design trends, Tailwind CSS patterns, Shadcn/ui integration, micro-interactions, and mobile-first responsive design.910---1112## When to Use This Skill1314Activate this skill when:15- Building or designing web/mobile interfaces16- Choosing colors, typography, or layout systems17- Implementing responsive design (mobile-first)18- Ensuring accessibility compliance (WCAG 2.2)19- Setting up Shadcn/ui + Tailwind CSS projects20- Creating micro-interactions and animations21- Reviewing UI/UX decisions before coding2223---2425## Core Design Principles2627### 1. Mobile-First Always28- Start with 320px width (smallest phone)29- Breakpoints: 576px (phone), 768px (tablet), 992px (laptop), 1200px (desktop)30- Single-column default, expand only when space allows3132### 2. Visual Hierarchy33Guide user attention using:34- **Size:** Larger = more important35- **Color:** Bright/contrasting = attention36- **Whitespace:** More space = emphasis37- **Proximity:** Related items grouped together38- **Contrast:** Dark on light or light on dark (4.5:1 minimum for text)3940### 3. Whitespace is Your Weapon41- Space elements in multiples of 8px (8, 16, 24, 32, 48, 64)42- Breathing room between sections: 48-64px minimum43- Padding inside cards: 24-32px4445---4647## Quick Reference4849### Color System50Build a primary color scale (50-900):51- **Primary:** Brand color (CTAs, links, active states)52- **Neutrals:** Grays 50-900 (text, backgrounds, borders)53- **Semantic:** Success (green), Error (red), Warning (yellow/orange)5455Tools: Huevy.app, Coolors.co, Adobe Color5657### Typography Scale (8px baseline)58```59text-xs: 12px / 16px line-height60text-sm: 14px / 20px61text-base: 16px / 24px (body default)62text-lg: 18px / 28px63text-xl: 20px / 28px64text-2xl: 24px / 32px65text-3xl: 30px / 36px (section headers)66text-4xl: 36px / 40px67text-5xl: 48px / 1 (hero titles)68```6970**Font pairing:** 2 fonts max (sans-serif for UI, optional serif for headings)7172### Layout Patterns73- **CSS Grid:** 2D layouts (page structure)74- **Flexbox:** 1D layouts (component internals)75- **Auto-fit grid:** `repeat(auto-fit, minmax(280px, 1fr))` (no media queries!)7677### Micro-Interactions78- **Hover:** Scale 1.05x (buttons feel clickable)79- **Click:** Scale 0.95x (tactile feedback)80- **Duration:** 0.2-0.3s max (keep it subtle)81- **Animate only:** `transform` and `opacity` (GPU accelerated)8283### Accessibility (WCAG 2.2)84- **Text contrast:** 4.5:1 minimum (normal text), 3:1 (large text)85- **UI components:** 3:1 contrast minimum86- **Keyboard navigation:** Tab order logical, focus states visible (3:1 contrast)87- **ARIA labels:** Always provide for buttons, images, interactive elements8889---9091## Shadcn/ui + Tailwind Stack9293### Setup (Next.js)94```bash95npx create-next-app@latest project-name --typescript --tailwind --app96cd project-name97npx shadcn@latest init98```99100Choose: Style (Default), Base color (Blue or custom), CSS variables (Yes)101102### Adding Components103```bash104npx shadcn@latest add button105npx shadcn@latest add card106npx shadcn@latest add dialog107npx shadcn@latest add calendar108```109110Components appear in `components/ui/` — you own the code, customize freely.111112### Tailwind Best Practices113- Use design tokens (not arbitrary values): `p-4` not `p-[17px]`114- Responsive utilities: `w-full md:w-1/2 lg:w-1/3`115- Dark mode: `dark:bg-gray-900 dark:text-white`116117---118119## Pre-Build Checklist120121Before writing code, confirm:122- [ ] Color palette defined (primary + neutrals + semantic colors)123- [ ] Typography scale chosen (6-8 sizes)124- [ ] Component library picked (Shadcn + Tailwind)125- [ ] Mobile breakpoints planned (576px, 768px, 992px)126- [ ] Accessibility contrast ratios checked (4.5:1 text, 3:1 UI)127- [ ] Micro-interaction list (hover, click, success states)128- [ ] Grid layout sketched (mobile → desktop progression)129130---131132## Inspiration Sources133134**Study these products:**135- Linear (linear.app) — Best keyboard-first UI, subtle animations136- Stripe Dashboard — Clean data visualization, perfect spacing137- Vercel — Minimalist, fast, modern gradients138- Notion — Intuitive drag-and-drop, clear hierarchy139140**Tools:**141- Figma (mockups before coding)142- WebAIM Contrast Checker (accessibility)143- Coolors/Huevy (color palettes)144145---146147## The 5 Laws of Beautiful UI1481491. **Contrast creates hierarchy** (big vs small, dark vs light)1502. **Whitespace creates calm** (never fear empty space)1513. **Consistency builds trust** (same patterns repeated)1524. **Feedback confirms action** (animations, success messages)1535. **Accessibility includes everyone** (contrast, keyboard, screen readers)154155---156157## Full Reference158159For comprehensive deep-dives (component patterns, animation examples, responsive grid techniques), see `UI_UX_MASTER_GUIDE.md` in this skill directory.160161---162163**Last Updated:** 2026-02-05