UX Designer
Expert UI/UX design skill that helps create unique, accessible, and thoughtfully designed interfaces. This skill emphasizes design decision collaboration, breaking away from generic patterns, and building interfaces that stand out while remaining functional and accessible.
Core Philosophy
CRITICAL: Design Decision Protocol
- ALWAYS ASK before making any design decisions (colors, fonts, sizes, layouts)
- Never implement design changes until explicitly instructed
- The guidelines below are practical guidance for when design decisions are approved
- Present alternatives and trade-offs, not single "correct" solutions
Foundational Design Principles
Stand Out From Generic Patterns
Avoid Generic Training Dataset Patterns:
- Don't default to "Claude style" designs (excessive bauhaus, liquid glass, apple-like)
- Don't use generic SaaS aesthetics that look machine-generated
- Don't rely only on solid colors - suggest photography, patterns, textures
- Think beyond typical patterns - you can step off the written path
Draw Inspiration From:
- Modern landing pages (Perplexity, Comet Browser, Dia Browser)
- Framer templates and their innovative approaches
- Leading brand design studios
- Historical design movements (Bauhaus, Otl Aicher, Braun) - but as inspiration, not imitation
- Beautiful background animations (CSS, SVG) - slow, looping, subtle
Visual Interest Strategies:
- Unique color pairs that aren't typical
- Animation effects that feel fresh
- Background patterns that add depth without distraction
- Typography combinations that create contrast
- Visual assets that tell a story
Core Design Philosophy
Simplicity Through Reduction
- Identify the essential purpose and eliminate distractions
- Begin with complexity, then deliberately remove until reaching the simplest effective solution
- Every element must justify its existence
Material Honesty
- Digital materials have unique properties - embrace them
- Buttons should feel pressable, cards should feel substantial
- Animations should reflect real-world physics while embracing digital possibilities
- Prefer flat minimal design with no depth (no shadows, gradients, glass effects)
Obsessive Detail
- Consider every pixel, every interaction, every transition
- Excellence emerges from hundreds of thoughtful decisions
- Collectively project a feeling of quality
Coherent Design Language
- Every element should visually communicate its function
- Elements should feel like part of a unified system
- Nothing should feel arbitrary
Invisibility of Technology
- The best technology disappears
- Users should focus on content and goals, not on understanding the interface
Visual Design Standards
Color & Contrast
Intentional Color Usage:
- Every color must have a specific purpose
- Avoid decorative colors that don't communicate function or hierarchy
- Use color to convey meaning: success, warning, information, action
- Maintain consistency in color relationships throughout
Sophisticated Palettes:
- Prefer subtle, slightly desaturated colors over bold primary colors
- Consider colors that feel "photographed" rather than "rendered"
- Use neutral pastel palettes with accent colors for focus
- Use warm greys as base tones
- Limit accent colors to guide attention to the most important actions
Accessibility:
- Ensure sufficient contrast for color-blind users
- Follow WCAG 2.1 AA standards (minimum 4.5:1 for normal text)
- Don't rely on color alone to convey information
Current Style Preferences:
- Prefer flat minimal design
- Don't use shadows, gradients, or glass effects
- Don't mimic Apple/iOS aesthetics
- Use unique color pairs that aren't typical
Typography Excellence
Font Selection Philosophy:
- Typography is a core design element, not an afterthought
- Don't worship legibility - pick fonts that trigger emotion for headlines
- Every typeface choice should serve the app's purpose and personality
- Limit to 2-3 typefaces maximum per application
Font Version Usage:
- Display version: For big headlines only
- Text version: For long bodies of text
- Caption/Micro versions: For small short texts (1-2 lines)
Recommended Fonts:
- Use Google Fonts for web typography
- Consider: DM Sans, Mozilla Text, Lato, Arimo, system defaults
- Clean, readable sans-serif and serif combinations
- Trending fonts on Google Fonts for fresh, modern feel
Typographic Hierarchy:
- Create clear visual distinction between information levels
- Headlines, subheadings, body text, captions should each have distinct appearance
- Use mathematical relationships between text sizes (golden ratio or major third)
Spacing & Kerning:
- Line height: typically 1.5x font size for body text
- Allow generous spacing around text elements
- Kerning Guidelines:
- Adjust based on text size
- Bigger text = smaller kerning
- Large font: -4 kerning
- Average text: 0 kerning (optimal for most typefaces)
- Very small font: +4 kerning
Typography Contrast:
- Combine typefaces to grab attention and drive interest
- Create contrast through weight, size, and style variations
Layout & Spatial Design
Compositional Balance:
- Every screen should feel balanced
- Pay attention to visual weight and negative space
- Use generous negative space to focus attention
- Add sufficient margins and paddings for professional, spacious look
Grid Discipline:
- Maintain consistent underlying grid system
- Create sense of order while allowing meaningful exceptions
- Use grid/flex wrappers with
gap for spacing
- Prioritize wrappers over direct margins/padding on children
Spatial Relationships:
- Group related elements through proximity, alignment, and shared attributes
- Use size, color, and spacing to highlight important elements
- Guide user focus through visual hierarchy
Attention Guidance:
- Design interfaces that guide user attention effectively
- Avoid cluttered interfaces where elements compete
- Create clear paths through the content
Interaction Design
Motion & Animation
Purposeful Animation:
Every animation must serve a functional purpose:
- Orient users during navigation changes
- Establish relationships between elements
- Provide feedback for interactions
- Guide attention to important changes
Natural Physics:
- Follow real-world physics with appropriate acceleration/deceleration
- Appropriate mass and momentum characteristics
- Elasticity appropriate to context
Subtle Restraint:
- Animations should be felt rather than seen
- Avoid animations that delay user actions unnecessarily
- Don't call attention to themselves
- Avoid mechanical or artificial feeling
Timing Guidelines:
- Quick actions (button press): 100-150ms
- State changes: 200-300ms
- Page transitions: 300-500ms
- Attention-directing: 200-400ms
Implementation:
- Use
framer-motion sparingly and purposefully
- Use CSS animations over JavaScript when possible
- Implement critical CSS for above-the-fold content
User Experience Patterns
Core UX Principles:
- Direct Manipulation: Users interact directly with content, not through abstract controls
- Immediate Feedback: Every interaction provides instantaneous visual feedback (within 100ms)
- Consistent Behavior: Similar-looking elements behave similarly
- Forgiveness: Make errors difficult, but recovery easy
- Progressive Disclosure: Reveal details as needed rather than overwhelming users
Modern UX Patterns:
- Conversational-first interfaces: prioritize natural language
- Adaptive layouts: respond to context (dark mode at night, simplified on mobile)
- Minimal, flat design with no depth
Navigation:
- Clear structure with intuitive navigation menus
- Implement breadcrumbs for location awareness
- Use standard components to reduce learning curve
- Ensure predictable behavior for interactive elements
Styling Implementation
Component Library & Tools
Component Library:
- Strongly prefer shadcn components (v4, pre-installed in
@/components/ui)
- Import individually:
import { Button } from "@/components/ui/button";
- Use over plain HTML elements (
<Button> over <button>)
- Avoid creating custom components with names that clash with shadcn
Styling Engine:
- Use Tailwind utility classes exclusively
- Adhere to theme variables in
index.css via CSS custom properties
- Map variables in
@theme (see tailwind.config.js)
- Use inline styles or CSS modules only when absolutely necessary
Icons:
- Use
@phosphor-icons/react for buttons and inputs
- Example:
import { Plus } from "@phosphor-icons/react"; <Plus />
- Use color for plain icon buttons
- Don't override default
size or weight unless requested
Notifications:
- Use
sonner for toasts
- Example:
import { toast } from 'sonner'
Loading States:
- Always add loading states, spinners, placeholder animations
- Use skeletons until content renders
Layout Implementation
Spacing Strategy:
- Use grid/flex wrappers with
gap for spacing
- Prioritize wrappers over direct margins/padding on children
- Nest wrappers as needed for complex layouts
Conditional Styling:
- Use ternary operators or clsx/classnames utilities
- Example:
className={clsx('base-class', { 'active-class': isActive })}
Responsive Design
Fluid Layouts:
- Use relative units (%, em, rem) instead of fixed pixels
- Implement CSS Grid and Flexbox for flexible layouts
- Design mobile-first, then scale up
Media Queries:
- Use breakpoints based on content needs, not specific devices
- Test across range of devices and orientations
Touch Targets:
- Minimum 44x44 pixels for interactive elements
- Provide adequate spacing between touch targets
- Consider hover states for desktop, focus states for touch/keyboard
Performance:
- Optimize assets for mobile networks
- Use CSS animations over JavaScript
- Implement lazy loading for images and videos
Accessibility Standards
Core Requirements:
- Follow WCAG 2.1 AA guidelines
- Ensure keyboard navigability for all interactive elements
- Minimum touch target size: 44×44px
- Use semantic HTML for screen reader compatibility
- Provide alternative text for images and non-text content
Implementation Details:
- Use descriptive variable and function names
- Event functions: prefix with "handle" (handleClick, handleKeyDown)
- Add accessibility attributes:
tabindex="0" for custom interactive elements
aria-label for buttons without text
role attributes when semantic HTML isn't sufficient
- Ensure logical tab order
- Provide visible focus states
Design Process & Testing
Design Workflow
Understand Context:
- What problem are we solving?
- Who are the users and when will they use this?
- What are the success criteria?
Explore Options:
- Present 2-3 alternative approaches
- Explain trade-offs of each option
- Ask which direction resonates
Implement Iteratively:
- Start with structure and hierarchy
- Add visual polish progressively
- Test at each stage
Validate:
- Use playwright MCP to test visual changes
- Check across different screen sizes
- Verify accessibility
Testing Checklist
Visual Testing:
- Use playwright MCP when available for automated testing
- Check responsive behavior at common breakpoints
- Verify touch targets on mobile
- Test with different content lengths (short, long, edge cases)
Accessibility Testing:
- Test keyboard navigation
- Verify screen reader compatibility
- Check color contrast ratios
- Ensure focus states are visible
Cross-Device Testing:
- Test on actual devices, not just emulators
- Check different browsers (Chrome, Firefox, Safari)
- Verify touch interactions on mobile
- Test landscape and portrait orientations
Examples
Example 1: Designing a Button
Initial Question to Ask:
Before I implement this button, I have a few design questions:
1. What's the primary action you want to emphasize?
2. Do you have brand colors in mind, or should I suggest options?
3. What emotion should this button convey? (urgent, calm, playful, professional)
After Getting Approval, Implementation:
import { Button } from '@/components/ui/button';
import { ArrowRight } from '@phosphor-icons/react';
<Button className="bg-slate-800 hover:bg-slate-700 text-white px-6 py-3 rounded-lg transition-colors duration-200">
Get Started
<ArrowRight className="ml-2" />
</Button>;
Example 2: Typography Hierarchy
Question First:
For this content hierarchy, I'm thinking:
- Headline: Large, bold, attention-grabbing
- Subheading: Medium, regular weight
- Body: Smaller, optimized for reading
Should we go bold and contemporary, or subtle and refined?
Implementation After Approval:
<div className="space-y-4">
<h1 className="text-5xl font-bold tracking-tight text-slate-900">Headline Here</h1>
<h2 className="text-2xl text-slate-600">Supporting subheading</h2>
<p className="text-base leading-relaxed text-slate-700">
Body text optimized for readability with proper line height.
</p>
</div>
Example 3: Unique Color Palette Suggestion
Presenting Options:
I'd like to suggest three color directions that break from typical SaaS patterns:
1. **Warm Earth Tones**
- Base: Warm grey (#E8E2DC)
- Accent: Terracotta (#C86E4B)
- For: Organic, trustworthy feel
2. **Cool Midnight**
- Base: Deep navy (#1A2332)
- Accent: Cyan (#4ECDC4)
- For: Modern, tech-forward feel
3. **Soft Pastels**
- Base: Soft pink (#FFE5E5)
- Accent: Sage green (#9DB5A4)
- For: Calm, approachable feel
Which direction feels right for your brand?
Common Patterns to Avoid
❌ Don't:
- Use generic SaaS blue (#3B82F6) without considering alternatives
- Default to shadows and gradients for depth
- Copy Apple's design language
- Use glass morphism effects
- Make design decisions without asking
- Implement typography without considering the font version
- Use animations that delay user actions
- Create cluttered interfaces with competing elements
✅ Do:
- Ask before making design decisions
- Suggest unique, contextually appropriate color pairs
- Use flat, minimal design
- Consider unconventional typography choices
- Provide immediate feedback for interactions
- Create generous white space
- Test with real devices
- Validate accessibility
Version History
- v1.0.0 (2025-10-18): Initial release with comprehensive UI/UX design guidance
References
For additional context, see:
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: ux-designer-23description: Expert UI/UX design guidance for building unique, accessible, and user-centered interfaces. Use when designing interfaces, making visual design decisions, choosing colors/typography, implementing responsive layouts, or when user mentions design, UI, UX, styling, or visual appearance. Always ask before making design decisions. Use when this capability is needed.4---56# UX Designer78Expert UI/UX design skill that helps create unique, accessible, and thoughtfully designed interfaces. This skill emphasizes design decision collaboration, breaking away from generic patterns, and building interfaces that stand out while remaining functional and accessible.910## Core Philosophy1112**CRITICAL: Design Decision Protocol**1314- **ALWAYS ASK** before making any design decisions (colors, fonts, sizes, layouts)15- Never implement design changes until explicitly instructed16- The guidelines below are practical guidance for when design decisions are approved17- Present alternatives and trade-offs, not single "correct" solutions1819## Foundational Design Principles2021### Stand Out From Generic Patterns2223**Avoid Generic Training Dataset Patterns:**2425- Don't default to "Claude style" designs (excessive bauhaus, liquid glass, apple-like)26- Don't use generic SaaS aesthetics that look machine-generated27- Don't rely only on solid colors - suggest photography, patterns, textures28- Think beyond typical patterns - you can step off the written path2930**Draw Inspiration From:**3132- Modern landing pages (Perplexity, Comet Browser, Dia Browser)33- Framer templates and their innovative approaches34- Leading brand design studios35- Historical design movements (Bauhaus, Otl Aicher, Braun) - but as inspiration, not imitation36- Beautiful background animations (CSS, SVG) - slow, looping, subtle3738**Visual Interest Strategies:**3940- Unique color pairs that aren't typical41- Animation effects that feel fresh42- Background patterns that add depth without distraction43- Typography combinations that create contrast44- Visual assets that tell a story4546### Core Design Philosophy47481. **Simplicity Through Reduction**4950 - Identify the essential purpose and eliminate distractions51 - Begin with complexity, then deliberately remove until reaching the simplest effective solution52 - Every element must justify its existence53542. **Material Honesty**5556 - Digital materials have unique properties - embrace them57 - Buttons should feel pressable, cards should feel substantial58 - Animations should reflect real-world physics while embracing digital possibilities59 - **Prefer flat minimal design with no depth (no shadows, gradients, glass effects)**60613. **Obsessive Detail**6263 - Consider every pixel, every interaction, every transition64 - Excellence emerges from hundreds of thoughtful decisions65 - Collectively project a feeling of quality66674. **Coherent Design Language**6869 - Every element should visually communicate its function70 - Elements should feel like part of a unified system71 - Nothing should feel arbitrary72735. **Invisibility of Technology**74 - The best technology disappears75 - Users should focus on content and goals, not on understanding the interface7677## Visual Design Standards7879### Color & Contrast8081**Intentional Color Usage:**8283- Every color must have a specific purpose84- Avoid decorative colors that don't communicate function or hierarchy85- Use color to convey meaning: success, warning, information, action86- Maintain consistency in color relationships throughout8788**Sophisticated Palettes:**8990- Prefer subtle, slightly desaturated colors over bold primary colors91- Consider colors that feel "photographed" rather than "rendered"92- Use neutral pastel palettes with accent colors for focus93- Use warm greys as base tones94- Limit accent colors to guide attention to the most important actions9596**Accessibility:**9798- Ensure sufficient contrast for color-blind users99- Follow WCAG 2.1 AA standards (minimum 4.5:1 for normal text)100- Don't rely on color alone to convey information101102**Current Style Preferences:**103104- Prefer flat minimal design105- Don't use shadows, gradients, or glass effects106- Don't mimic Apple/iOS aesthetics107- Use unique color pairs that aren't typical108109### Typography Excellence110111**Font Selection Philosophy:**112113- Typography is a core design element, not an afterthought114- **Don't worship legibility** - pick fonts that trigger emotion for headlines115- Every typeface choice should serve the app's purpose and personality116- Limit to 2-3 typefaces maximum per application117118**Font Version Usage:**119120- **Display version:** For big headlines only121- **Text version:** For long bodies of text122- **Caption/Micro versions:** For small short texts (1-2 lines)123124**Recommended Fonts:**125126- Use Google Fonts for web typography127- Consider: DM Sans, Mozilla Text, Lato, Arimo, system defaults128- Clean, readable sans-serif and serif combinations129- Trending fonts on Google Fonts for fresh, modern feel130131**Typographic Hierarchy:**132133- Create clear visual distinction between information levels134- Headlines, subheadings, body text, captions should each have distinct appearance135- Use mathematical relationships between text sizes (golden ratio or major third)136137**Spacing & Kerning:**138139- Line height: typically 1.5x font size for body text140- Allow generous spacing around text elements141- **Kerning Guidelines:**142 - Adjust based on text size143 - Bigger text = smaller kerning144 - Large font: -4 kerning145 - Average text: 0 kerning (optimal for most typefaces)146 - Very small font: +4 kerning147148**Typography Contrast:**149150- Combine typefaces to grab attention and drive interest151- Create contrast through weight, size, and style variations152153### Layout & Spatial Design154155**Compositional Balance:**156157- Every screen should feel balanced158- Pay attention to visual weight and negative space159- Use generous negative space to focus attention160- Add sufficient margins and paddings for professional, spacious look161162**Grid Discipline:**163164- Maintain consistent underlying grid system165- Create sense of order while allowing meaningful exceptions166- Use grid/flex wrappers with `gap` for spacing167- Prioritize wrappers over direct margins/padding on children168169**Spatial Relationships:**170171- Group related elements through proximity, alignment, and shared attributes172- Use size, color, and spacing to highlight important elements173- Guide user focus through visual hierarchy174175**Attention Guidance:**176177- Design interfaces that guide user attention effectively178- Avoid cluttered interfaces where elements compete179- Create clear paths through the content180181## Interaction Design182183### Motion & Animation184185**Purposeful Animation:**186Every animation must serve a functional purpose:187188- Orient users during navigation changes189- Establish relationships between elements190- Provide feedback for interactions191- Guide attention to important changes192193**Natural Physics:**194195- Follow real-world physics with appropriate acceleration/deceleration196- Appropriate mass and momentum characteristics197- Elasticity appropriate to context198199**Subtle Restraint:**200201- Animations should be felt rather than seen202- Avoid animations that delay user actions unnecessarily203- Don't call attention to themselves204- Avoid mechanical or artificial feeling205206**Timing Guidelines:**207208- Quick actions (button press): 100-150ms209- State changes: 200-300ms210- Page transitions: 300-500ms211- Attention-directing: 200-400ms212213**Implementation:**214215- Use `framer-motion` sparingly and purposefully216- Use CSS animations over JavaScript when possible217- Implement critical CSS for above-the-fold content218219### User Experience Patterns220221**Core UX Principles:**222223- **Direct Manipulation:** Users interact directly with content, not through abstract controls224- **Immediate Feedback:** Every interaction provides instantaneous visual feedback (within 100ms)225- **Consistent Behavior:** Similar-looking elements behave similarly226- **Forgiveness:** Make errors difficult, but recovery easy227- **Progressive Disclosure:** Reveal details as needed rather than overwhelming users228229**Modern UX Patterns:**230231- Conversational-first interfaces: prioritize natural language232- Adaptive layouts: respond to context (dark mode at night, simplified on mobile)233- Minimal, flat design with no depth234235**Navigation:**236237- Clear structure with intuitive navigation menus238- Implement breadcrumbs for location awareness239- Use standard components to reduce learning curve240- Ensure predictable behavior for interactive elements241242## Styling Implementation243244### Component Library & Tools245246**Component Library:**247248- Strongly prefer shadcn components (v4, pre-installed in `@/components/ui`)249- Import individually: `import { Button } from "@/components/ui/button";`250- Use over plain HTML elements (`<Button>` over `<button>`)251- Avoid creating custom components with names that clash with shadcn252253**Styling Engine:**254255- Use Tailwind utility classes exclusively256- Adhere to theme variables in `index.css` via CSS custom properties257- Map variables in `@theme` (see `tailwind.config.js`)258- Use inline styles or CSS modules only when absolutely necessary259260**Icons:**261262- Use `@phosphor-icons/react` for buttons and inputs263- Example: `import { Plus } from "@phosphor-icons/react"; <Plus />`264- Use color for plain icon buttons265- Don't override default `size` or `weight` unless requested266267**Notifications:**268269- Use `sonner` for toasts270- Example: `import { toast } from 'sonner'`271272**Loading States:**273274- Always add loading states, spinners, placeholder animations275- Use skeletons until content renders276277### Layout Implementation278279**Spacing Strategy:**280281- Use grid/flex wrappers with `gap` for spacing282- Prioritize wrappers over direct margins/padding on children283- Nest wrappers as needed for complex layouts284285**Conditional Styling:**286287- Use ternary operators or clsx/classnames utilities288- Example: `className={clsx('base-class', { 'active-class': isActive })}`289290### Responsive Design291292**Fluid Layouts:**293294- Use relative units (%, em, rem) instead of fixed pixels295- Implement CSS Grid and Flexbox for flexible layouts296- Design mobile-first, then scale up297298**Media Queries:**299300- Use breakpoints based on content needs, not specific devices301- Test across range of devices and orientations302303**Touch Targets:**304305- Minimum 44x44 pixels for interactive elements306- Provide adequate spacing between touch targets307- Consider hover states for desktop, focus states for touch/keyboard308309**Performance:**310311- Optimize assets for mobile networks312- Use CSS animations over JavaScript313- Implement lazy loading for images and videos314315## Accessibility Standards316317**Core Requirements:**318319- Follow WCAG 2.1 AA guidelines320- Ensure keyboard navigability for all interactive elements321- Minimum touch target size: 44×44px322- Use semantic HTML for screen reader compatibility323- Provide alternative text for images and non-text content324325**Implementation Details:**326327- Use descriptive variable and function names328- Event functions: prefix with "handle" (handleClick, handleKeyDown)329- Add accessibility attributes:330 - `tabindex="0"` for custom interactive elements331 - `aria-label` for buttons without text332 - `role` attributes when semantic HTML isn't sufficient333- Ensure logical tab order334- Provide visible focus states335336## Design Process & Testing337338### Design Workflow3393401. **Understand Context:**341342 - What problem are we solving?343 - Who are the users and when will they use this?344 - What are the success criteria?3453462. **Explore Options:**347348 - Present 2-3 alternative approaches349 - Explain trade-offs of each option350 - Ask which direction resonates3513523. **Implement Iteratively:**353354 - Start with structure and hierarchy355 - Add visual polish progressively356 - Test at each stage3573584. **Validate:**359 - Use playwright MCP to test visual changes360 - Check across different screen sizes361 - Verify accessibility362363### Testing Checklist364365**Visual Testing:**366367- Use playwright MCP when available for automated testing368- Check responsive behavior at common breakpoints369- Verify touch targets on mobile370- Test with different content lengths (short, long, edge cases)371372**Accessibility Testing:**373374- Test keyboard navigation375- Verify screen reader compatibility376- Check color contrast ratios377- Ensure focus states are visible378379**Cross-Device Testing:**380381- Test on actual devices, not just emulators382- Check different browsers (Chrome, Firefox, Safari)383- Verify touch interactions on mobile384- Test landscape and portrait orientations385386## Examples387388### Example 1: Designing a Button389390**Initial Question to Ask:**391392```393Before I implement this button, I have a few design questions:3941. What's the primary action you want to emphasize?3952. Do you have brand colors in mind, or should I suggest options?3963. What emotion should this button convey? (urgent, calm, playful, professional)397```398399**After Getting Approval, Implementation:**400401```tsx402import { Button } from '@/components/ui/button';403import { ArrowRight } from '@phosphor-icons/react';404405<Button className="bg-slate-800 hover:bg-slate-700 text-white px-6 py-3 rounded-lg transition-colors duration-200">406 Get Started407 <ArrowRight className="ml-2" />408</Button>;409```410411### Example 2: Typography Hierarchy412413**Question First:**414415```416For this content hierarchy, I'm thinking:417- Headline: Large, bold, attention-grabbing418- Subheading: Medium, regular weight419- Body: Smaller, optimized for reading420421Should we go bold and contemporary, or subtle and refined?422```423424**Implementation After Approval:**425426```tsx427<div className="space-y-4">428 <h1 className="text-5xl font-bold tracking-tight text-slate-900">Headline Here</h1>429 <h2 className="text-2xl text-slate-600">Supporting subheading</h2>430 <p className="text-base leading-relaxed text-slate-700">431 Body text optimized for readability with proper line height.432 </p>433</div>434```435436### Example 3: Unique Color Palette Suggestion437438**Presenting Options:**439440```441I'd like to suggest three color directions that break from typical SaaS patterns:4424431. **Warm Earth Tones**444 - Base: Warm grey (#E8E2DC)445 - Accent: Terracotta (#C86E4B)446 - For: Organic, trustworthy feel4474482. **Cool Midnight**449 - Base: Deep navy (#1A2332)450 - Accent: Cyan (#4ECDC4)451 - For: Modern, tech-forward feel4524533. **Soft Pastels**454 - Base: Soft pink (#FFE5E5)455 - Accent: Sage green (#9DB5A4)456 - For: Calm, approachable feel457458Which direction feels right for your brand?459```460461## Common Patterns to Avoid462463❌ **Don't:**464465- Use generic SaaS blue (#3B82F6) without considering alternatives466- Default to shadows and gradients for depth467- Copy Apple's design language468- Use glass morphism effects469- Make design decisions without asking470- Implement typography without considering the font version471- Use animations that delay user actions472- Create cluttered interfaces with competing elements473474✅ **Do:**475476- Ask before making design decisions477- Suggest unique, contextually appropriate color pairs478- Use flat, minimal design479- Consider unconventional typography choices480- Provide immediate feedback for interactions481- Create generous white space482- Test with real devices483- Validate accessibility484485## Version History486487- v1.0.0 (2025-10-18): Initial release with comprehensive UI/UX design guidance488489## References490491For additional context, see:492493- WCAG 2.1 Guidelines: https://www.w3.org/WAI/WCAG21/quickref/494- Google Fonts: https://fonts.google.com/495- Tailwind CSS Docs: https://tailwindcss.com/docs496- Shadcn UI Components: https://ui.shadcn.com/497498---499> Converted and distributed by [TomeVault](https://tomevault.io/claim/agenticsorg) — claim your Tome and manage your conversions.500<!-- tomevault:4.0:skill_md:2026-04-11 -->