UI/UX Pro Max - Design Intelligence
Searchable database of UI styles, color palettes, font pairings, chart types, product recommendations, UX guidelines, and stack-specific best practices.
Prerequisites
Check if Python is installed:
python3 --version || python --version
If Python is not installed, install it based on user's OS:
macOS:
brew install python3
Ubuntu/Debian:
sudo apt update && sudo apt install python3
Windows:
winget install Python.Python.3.12
How to Use This Skill
When user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:
Step 1: Analyze User Requirements
Extract key information from user request:
- Product type: SaaS, e-commerce, portfolio, dashboard, landing page, etc.
- Style keywords: minimal, playful, professional, elegant, dark mode, etc.
- Industry: healthcare, fintech, gaming, education, etc.
- Stack: React, Vue, Next.js, or default to
html-tailwind
Step 2: Search Relevant Domains
Use search.py multiple times to gather comprehensive information. Search until you have enough context.
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]
Recommended search order:
- Product - Get style recommendations for product type
- Style - Get detailed style guide (colors, effects, frameworks)
- Typography - Get font pairings with Google Fonts imports
- Color - Get color palette (Primary, Secondary, CTA, Background, Text, Border)
- Landing - Get page structure (if landing page)
- Chart - Get chart recommendations (if dashboard/analytics)
- UX - Get best practices and anti-patterns
- Stack - Get stack-specific guidelines (default: html-tailwind)
Step 3: Stack Guidelines (Default: html-tailwind)
If user doesn't specify a stack, default to html-tailwind.
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --stack html-tailwind
Available stacks: html-tailwind, react, nextjs, vue, svelte, swiftui, react-native, flutter, shadcn
Search Reference
Available Domains
| Domain |
Use For |
Example Keywords |
product |
Product type recommendations |
SaaS, e-commerce, portfolio, healthcare, beauty, service |
style |
UI styles, colors, effects |
glassmorphism, minimalism, dark mode, brutalism |
typography |
Font pairings, Google Fonts |
elegant, playful, professional, modern |
color |
Color palettes by product type |
saas, ecommerce, healthcare, beauty, fintech, service |
landing |
Page structure, CTA strategies |
hero, hero-centric, testimonial, pricing, social-proof |
chart |
Chart types, library recommendations |
trend, comparison, timeline, funnel, pie |
ux |
Best practices, anti-patterns |
animation, accessibility, z-index, loading |
prompt |
AI prompts, CSS keywords |
(style name) |
Available Stacks
| Stack |
Focus |
html-tailwind |
Tailwind utilities, responsive, a11y (DEFAULT) |
react |
State, hooks, performance, patterns |
nextjs |
SSR, routing, images, API routes |
vue |
Composition API, Pinia, Vue Router |
svelte |
Runes, stores, SvelteKit |
swiftui |
Views, State, Navigation, Animation |
react-native |
Components, Navigation, Lists |
flutter |
Widgets, State, Layout, Theming |
shadcn |
shadcn/ui components, theming, forms, patterns |
Example Workflow
User request: "Làm landing page cho dịch vụ chăm sóc da chuyên nghiệp"
AI should:
# 1. Search product type
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service" --domain product
# 2. Search style (based on industry: beauty, elegant)
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "elegant minimal soft" --domain style
# 3. Search typography
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "elegant luxury" --domain typography
# 4. Search color palette
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness" --domain color
# 5. Search landing page structure
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "hero-centric social-proof" --domain landing
# 6. Search UX guidelines
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "animation" --domain ux
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "accessibility" --domain ux
# 7. Search stack guidelines (default: html-tailwind)
python3 .codex/skills/ui-ux-pro-max/scripts/search.py "layout responsive" --stack html-tailwind
Then: Synthesize all search results and implement the design.
Tips for Better Results
- Be specific with keywords - "healthcare SaaS dashboard" > "app"
- Search multiple times - Different keywords reveal different insights
- Combine domains - Style + Typography + Color = Complete design system
- Always check UX - Search "animation", "z-index", "accessibility" for common issues
- Use stack flag - Get implementation-specific best practices
- Iterate - If first search doesn't match, try different keywords
- Split Into Multiple Files - For better maintainability:
- Separate components into individual files (e.g.,
Header.tsx, Footer.tsx)
- Extract reusable styles into dedicated files
- Keep each file focused and under 200-300 lines
Common Rules for Professional UI
These are frequently overlooked issues that make UI look unprofessional:
Icons & Visual Elements
| Rule |
Do |
Don't |
| No emoji icons |
Use SVG icons (Heroicons, Lucide, Simple Icons) |
Use emojis like 🎨 🚀 ⚙️ as UI icons |
| Stable hover states |
Use color/opacity transitions on hover |
Use scale transforms that shift layout |
| Correct brand logos |
Research official SVG from Simple Icons |
Guess or use incorrect logo paths |
| Consistent icon sizing |
Use fixed viewBox (24x24) with w-6 h-6 |
Mix different icon sizes randomly |
Interaction & Cursor
| Rule |
Do |
Don't |
| Cursor pointer |
Add cursor-pointer to all clickable/hoverable cards |
Leave default cursor on interactive elements |
| Hover feedback |
Provide visual feedback (color, shadow, border) |
No indication element is interactive |
| Smooth transitions |
Use transition-colors duration-200 |
Instant state changes or too slow (>500ms) |
Light/Dark Mode Contrast
| Rule |
Do |
Don't |
| Glass card light mode |
Use bg-white/80 or higher opacity |
Use bg-white/10 (too transparent) |
| Text contrast light |
Use #0F172A (slate-900) for text |
Use #94A3B8 (slate-400) for body text |
| Muted text light |
Use #475569 (slate-600) minimum |
Use gray-400 or lighter |
| Border visibility |
Use border-gray-200 in light mode |
Use border-white/10 (invisible) |
Layout & Spacing
| Rule |
Do |
Don't |
| Floating navbar |
Add top-4 left-4 right-4 spacing |
Stick navbar to top-0 left-0 right-0 |
| Content padding |
Account for fixed navbar height |
Let content hide behind fixed elements |
| Consistent max-width |
Use same max-w-6xl or max-w-7xl |
Mix different container widths |
Pre-Delivery Checklist
Before delivering UI code, verify these items:
Visual Quality
1---2name: ui-ux-pro-max3description: UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient.4---56# UI/UX Pro Max - Design Intelligence78Searchable database of UI styles, color palettes, font pairings, chart types, product recommendations, UX guidelines, and stack-specific best practices.910## Prerequisites1112Check if Python is installed:1314```bash15python3 --version || python --version16```1718If Python is not installed, install it based on user's OS:1920**macOS:**21```bash22brew install python323```2425**Ubuntu/Debian:**26```bash27sudo apt update && sudo apt install python328```2930**Windows:**31```powershell32winget install Python.Python.3.1233```3435---3637## How to Use This Skill3839When user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:4041### Step 1: Analyze User Requirements4243Extract key information from user request:44- **Product type**: SaaS, e-commerce, portfolio, dashboard, landing page, etc.45- **Style keywords**: minimal, playful, professional, elegant, dark mode, etc.46- **Industry**: healthcare, fintech, gaming, education, etc.47- **Stack**: React, Vue, Next.js, or default to `html-tailwind`4849### Step 2: Search Relevant Domains5051Use `search.py` multiple times to gather comprehensive information. Search until you have enough context.5253```bash54python3 .codex/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]55```5657**Recommended search order:**58591. **Product** - Get style recommendations for product type602. **Style** - Get detailed style guide (colors, effects, frameworks)613. **Typography** - Get font pairings with Google Fonts imports624. **Color** - Get color palette (Primary, Secondary, CTA, Background, Text, Border)635. **Landing** - Get page structure (if landing page)646. **Chart** - Get chart recommendations (if dashboard/analytics)657. **UX** - Get best practices and anti-patterns668. **Stack** - Get stack-specific guidelines (default: html-tailwind)6768### Step 3: Stack Guidelines (Default: html-tailwind)6970If user doesn't specify a stack, **default to `html-tailwind`**.7172```bash73python3 .codex/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --stack html-tailwind74```7576Available stacks: `html-tailwind`, `react`, `nextjs`, `vue`, `svelte`, `swiftui`, `react-native`, `flutter`, `shadcn`7778---7980## Search Reference8182### Available Domains8384| Domain | Use For | Example Keywords |85|--------|---------|------------------|86| `product` | Product type recommendations | SaaS, e-commerce, portfolio, healthcare, beauty, service |87| `style` | UI styles, colors, effects | glassmorphism, minimalism, dark mode, brutalism |88| `typography` | Font pairings, Google Fonts | elegant, playful, professional, modern |89| `color` | Color palettes by product type | saas, ecommerce, healthcare, beauty, fintech, service |90| `landing` | Page structure, CTA strategies | hero, hero-centric, testimonial, pricing, social-proof |91| `chart` | Chart types, library recommendations | trend, comparison, timeline, funnel, pie |92| `ux` | Best practices, anti-patterns | animation, accessibility, z-index, loading |93| `prompt` | AI prompts, CSS keywords | (style name) |9495### Available Stacks9697| Stack | Focus |98|-------|-------|99| `html-tailwind` | Tailwind utilities, responsive, a11y (DEFAULT) |100| `react` | State, hooks, performance, patterns |101| `nextjs` | SSR, routing, images, API routes |102| `vue` | Composition API, Pinia, Vue Router |103| `svelte` | Runes, stores, SvelteKit |104| `swiftui` | Views, State, Navigation, Animation |105| `react-native` | Components, Navigation, Lists |106| `flutter` | Widgets, State, Layout, Theming |107| `shadcn` | shadcn/ui components, theming, forms, patterns |108109---110111## Example Workflow112113**User request:** "Làm landing page cho dịch vụ chăm sóc da chuyên nghiệp"114115**AI should:**116117```bash118# 1. Search product type119python3 .codex/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service" --domain product120121# 2. Search style (based on industry: beauty, elegant)122python3 .codex/skills/ui-ux-pro-max/scripts/search.py "elegant minimal soft" --domain style123124# 3. Search typography125python3 .codex/skills/ui-ux-pro-max/scripts/search.py "elegant luxury" --domain typography126127# 4. Search color palette128python3 .codex/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness" --domain color129130# 5. Search landing page structure131python3 .codex/skills/ui-ux-pro-max/scripts/search.py "hero-centric social-proof" --domain landing132133# 6. Search UX guidelines134python3 .codex/skills/ui-ux-pro-max/scripts/search.py "animation" --domain ux135python3 .codex/skills/ui-ux-pro-max/scripts/search.py "accessibility" --domain ux136137# 7. Search stack guidelines (default: html-tailwind)138python3 .codex/skills/ui-ux-pro-max/scripts/search.py "layout responsive" --stack html-tailwind139```140141**Then:** Synthesize all search results and implement the design.142143---144145## Tips for Better Results1461471. **Be specific with keywords** - "healthcare SaaS dashboard" > "app"1482. **Search multiple times** - Different keywords reveal different insights1493. **Combine domains** - Style + Typography + Color = Complete design system1504. **Always check UX** - Search "animation", "z-index", "accessibility" for common issues1515. **Use stack flag** - Get implementation-specific best practices1526. **Iterate** - If first search doesn't match, try different keywords1537. **Split Into Multiple Files** - For better maintainability:154 - Separate components into individual files (e.g., `Header.tsx`, `Footer.tsx`)155 - Extract reusable styles into dedicated files156 - Keep each file focused and under 200-300 lines157158---159160## Common Rules for Professional UI161162These are frequently overlooked issues that make UI look unprofessional:163164### Icons & Visual Elements165166| Rule | Do | Don't |167|------|----|----- |168| **No emoji icons** | Use SVG icons (Heroicons, Lucide, Simple Icons) | Use emojis like 🎨 🚀 ⚙️ as UI icons |169| **Stable hover states** | Use color/opacity transitions on hover | Use scale transforms that shift layout |170| **Correct brand logos** | Research official SVG from Simple Icons | Guess or use incorrect logo paths |171| **Consistent icon sizing** | Use fixed viewBox (24x24) with w-6 h-6 | Mix different icon sizes randomly |172173### Interaction & Cursor174175| Rule | Do | Don't |176|------|----|----- |177| **Cursor pointer** | Add `cursor-pointer` to all clickable/hoverable cards | Leave default cursor on interactive elements |178| **Hover feedback** | Provide visual feedback (color, shadow, border) | No indication element is interactive |179| **Smooth transitions** | Use `transition-colors duration-200` | Instant state changes or too slow (>500ms) |180181### Light/Dark Mode Contrast182183| Rule | Do | Don't |184|------|----|----- |185| **Glass card light mode** | Use `bg-white/80` or higher opacity | Use `bg-white/10` (too transparent) |186| **Text contrast light** | Use `#0F172A` (slate-900) for text | Use `#94A3B8` (slate-400) for body text |187| **Muted text light** | Use `#475569` (slate-600) minimum | Use gray-400 or lighter |188| **Border visibility** | Use `border-gray-200` in light mode | Use `border-white/10` (invisible) |189190### Layout & Spacing191192| Rule | Do | Don't |193|------|----|----- |194| **Floating navbar** | Add `top-4 left-4 right-4` spacing | Stick navbar to `top-0 left-0 right-0` |195| **Content padding** | Account for fixed navbar height | Let content hide behind fixed elements |196| **Consistent max-width** | Use same `max-w-6xl` or `max-w-7xl` | Mix different container widths |197198---199200## Pre-Delivery Checklist201202Before delivering UI code, verify these items:203204### Visual Quality205- [ ] No emojis used as icons (use SVG instead)206- [ ] All icons from consistent icon set (Heroicons/Lucide)