Refactoring UI Tailwind CSS Best Practices
Comprehensive UI refactoring guide based on Refactoring UI by Adam Wathan & Steve Schoger, implemented with Tailwind CSS utility classes. Contains 52 rules across 9 categories, prioritized by design impact to guide automated refactoring and code generation. Uses Tailwind CSS v4 syntax (v3 notes provided where syntax differs).
Important: Think first, style second. Before applying any visual rule, understand the UI's purpose, identify what matters to the user, and remove unnecessary elements. The Design Intent category (priority 1) must be considered before any styling changes. A simpler component with fewer elements always beats a decorated component with unnecessary markup.
When to Apply
Reference these guidelines when:
- Refactoring existing Tailwind CSS components
- Writing new UI with Tailwind utility classes
- Reviewing code for visual hierarchy and spacing issues
- Improving design quality without a designer
- Fixing accessibility contrast problems
Rule Categories by Priority
| Priority |
Category |
Impact |
Prefix |
| 1 |
Design Intent |
CRITICAL |
intent- |
| 2 |
Visual Hierarchy |
CRITICAL |
hier- |
| 3 |
Layout & Spacing |
CRITICAL |
space- |
| 4 |
Typography |
HIGH |
type- |
| 5 |
Color Systems |
HIGH |
color- |
| 6 |
Depth & Shadows |
MEDIUM |
depth- |
| 7 |
Borders & Separation |
MEDIUM |
sep- |
| 8 |
Images & Content |
LOW-MEDIUM |
img- |
| 9 |
Polish & Details |
LOW |
polish- |
Quick Reference
1. Design Intent (CRITICAL)
intent-audit-before-styling - Audit what each element communicates before changing any CSS
intent-remove-before-decorating - Remove unnecessary elements before styling what remains
intent-reduce-cognitive-load - Reduce choices per screen — fewer options beat prettier options
intent-progressive-disclosure - Hide secondary information behind interactions
intent-content-drives-layout - Let real content determine layout — not the other way around
intent-simplify-over-decorate - Prefer removing a wrapper over adding 5 utility classes to it
intent-match-context-fidelity - Match design polish to context — admin vs consumer vs product
intent-match-existing-patterns - Audit sibling component patterns before restyling
2. Visual Hierarchy (CRITICAL)
hier-size-weight-color - Use size, weight, and color for hierarchy — not just size
hier-deemphasize-secondary - De-emphasize secondary content instead of emphasizing primary
hier-button-hierarchy - Style buttons by visual hierarchy, not semantic importance
hier-label-value-pairs - Combine labels and values into natural language
hier-semantic-vs-visual - Separate visual hierarchy from document hierarchy
hier-icon-sizing - Size icons relative to adjacent text, not to fill space
hier-color-hierarchy-on-dark - Use opacity or muted colors for hierarchy on colored backgrounds
3. Layout & Spacing (CRITICAL)
space-start-generous - Start with too much whitespace, then remove
space-systematic-scale - Use a constrained spacing scale, not arbitrary values
space-relationship-proximity - Use spacing to show relationships between elements
space-dont-fill-screen - Constrain content width — avoid filling the whole screen
space-grids-not-required - Use fixed widths when grids are not needed
space-relative-sizing-fails - Avoid raw viewport units without clamping
space-mobile-first - Design mobile-first at ~400px, then expand
4. Typography (HIGH)
type-line-length - Keep line length between 45-75 characters
type-line-height-inverse - Line height and font size are inversely proportional
type-font-weight-variety - Choose fonts with at least 5 weight variations
type-no-center-long-text - Left-align body content — avoid centering long-form text
type-letter-spacing - Tighten letter spacing for headlines, loosen for uppercase
type-align-numbers-right - Align numbers right in tables for easy comparison
5. Color Systems (HIGH)
color-define-palette-upfront - Define a complete color palette upfront — don't pick colors ad-hoc
color-grayscale-first - Design in grayscale first, add color last
color-accessible-contrast - Ensure 4.5:1 contrast ratio for body text
color-dark-gray-not-black - Use dark gray instead of pure black for text
color-saturated-grays - Add subtle saturation to grays for warmth or coolness
color-light-backgrounds-dark-text - Use light-colored backgrounds with dark text for badges
6. Depth & Shadows (MEDIUM)
depth-shadow-scale - Define a fixed shadow scale — small to extra large
depth-shadow-vertical-offset - Use vertical offset for natural-looking shadows
depth-interactive-elevation - Use shadow changes to communicate interactivity
depth-light-closer-dark-recedes - Lighter colors feel closer, darker colors recede
depth-overlap-layers - Overlap elements to create visual layers
7. Borders & Separation (MEDIUM)
sep-fewer-borders - Use fewer borders — replace with spacing, shadows, or background color
sep-background-color-separation - Use background color differences to separate sections
sep-table-spacing-not-lines - Use spacing instead of lines in simple tables
sep-card-radio-buttons - Upgrade radio buttons to selectable cards for key choices
8. Images & Content (LOW-MEDIUM)
img-control-user-content - Control user-uploaded image size and aspect ratio
img-text-overlay - Add overlays or reduce contrast for text over images
img-dont-scale-up-icons - Avoid scaling up icons designed for small sizes
img-empty-states - Design meaningful empty states with clear CTAs
9. Polish & Details (LOW)
polish-accent-borders - Add accent borders to highlight important elements
polish-custom-bullets - Replace default bullets with icons or checkmarks
polish-border-radius-personality - Match border radius to brand personality
polish-gradient-close-hues - Use gradients with hues within 30 degrees of each other
polish-inner-shadow-images - Add inner shadow to prevent image background bleed
Scope & Limitations
This skill covers layout, hierarchy, spacing, color, and polish based on Refactoring UI principles. It does NOT cover:
- Font selection & pairing — choosing distinctive typefaces, avoiding generic AI defaults (Inter, Arial, system-ui), or pairing display + body fonts
- Animation & motion — meaningful transitions, micro-interactions, page load sequences, or scroll-triggered reveals
- Creative direction — establishing an aesthetic vision, choosing a tone (minimal, maximalist, brutalist, etc.), or differentiating from generic "AI slop" aesthetics
- Spatial composition — asymmetric layouts, grid-breaking elements, or unconventional visual flow
For these concerns, pair this skill with a design-thinking or frontend-design skill that covers creative direction and aesthetic execution.
How to Use
Read individual reference files for detailed explanations and code examples:
- Section definitions - Category structure and impact levels
- Rule template - Template for adding new rules
Reference Files
| File |
Description |
| references/_sections.md |
Category definitions and ordering |
| assets/templates/_template.md |
Template for new rules |
| metadata.json |
Version and reference information |
1---2name: tailwind-ui-refactor3description: Refactoring UI Tailwind CSS Best Practices4---5# Refactoring UI Tailwind CSS Best Practices67Comprehensive UI refactoring guide based on Refactoring UI by Adam Wathan & Steve Schoger, implemented with Tailwind CSS utility classes. Contains 52 rules across 9 categories, prioritized by design impact to guide automated refactoring and code generation. Uses Tailwind CSS v4 syntax (v3 notes provided where syntax differs).89**Important: Think first, style second.** Before applying any visual rule, understand the UI's purpose, identify what matters to the user, and remove unnecessary elements. The Design Intent category (priority 1) must be considered before any styling changes. A simpler component with fewer elements always beats a decorated component with unnecessary markup.1011## When to Apply1213Reference these guidelines when:14- Refactoring existing Tailwind CSS components15- Writing new UI with Tailwind utility classes16- Reviewing code for visual hierarchy and spacing issues17- Improving design quality without a designer18- Fixing accessibility contrast problems1920## Rule Categories by Priority2122| Priority | Category | Impact | Prefix |23|----------|----------|--------|--------|24| 1 | Design Intent | CRITICAL | `intent-` |25| 2 | Visual Hierarchy | CRITICAL | `hier-` |26| 3 | Layout & Spacing | CRITICAL | `space-` |27| 4 | Typography | HIGH | `type-` |28| 5 | Color Systems | HIGH | `color-` |29| 6 | Depth & Shadows | MEDIUM | `depth-` |30| 7 | Borders & Separation | MEDIUM | `sep-` |31| 8 | Images & Content | LOW-MEDIUM | `img-` |32| 9 | Polish & Details | LOW | `polish-` |3334## Quick Reference3536### 1. Design Intent (CRITICAL)3738- [`intent-audit-before-styling`](references/intent-audit-before-styling.md) - Audit what each element communicates before changing any CSS39- [`intent-remove-before-decorating`](references/intent-remove-before-decorating.md) - Remove unnecessary elements before styling what remains40- [`intent-reduce-cognitive-load`](references/intent-reduce-cognitive-load.md) - Reduce choices per screen — fewer options beat prettier options41- [`intent-progressive-disclosure`](references/intent-progressive-disclosure.md) - Hide secondary information behind interactions42- [`intent-content-drives-layout`](references/intent-content-drives-layout.md) - Let real content determine layout — not the other way around43- [`intent-simplify-over-decorate`](references/intent-simplify-over-decorate.md) - Prefer removing a wrapper over adding 5 utility classes to it44- [`intent-match-context-fidelity`](references/intent-match-context-fidelity.md) - Match design polish to context — admin vs consumer vs product45- [`intent-match-existing-patterns`](references/intent-match-existing-patterns.md) - Audit sibling component patterns before restyling4647### 2. Visual Hierarchy (CRITICAL)4849- [`hier-size-weight-color`](references/hier-size-weight-color.md) - Use size, weight, and color for hierarchy — not just size50- [`hier-deemphasize-secondary`](references/hier-deemphasize-secondary.md) - De-emphasize secondary content instead of emphasizing primary51- [`hier-button-hierarchy`](references/hier-button-hierarchy.md) - Style buttons by visual hierarchy, not semantic importance52- [`hier-label-value-pairs`](references/hier-label-value-pairs.md) - Combine labels and values into natural language53- [`hier-semantic-vs-visual`](references/hier-semantic-vs-visual.md) - Separate visual hierarchy from document hierarchy54- [`hier-icon-sizing`](references/hier-icon-sizing.md) - Size icons relative to adjacent text, not to fill space55- [`hier-color-hierarchy-on-dark`](references/hier-color-hierarchy-on-dark.md) - Use opacity or muted colors for hierarchy on colored backgrounds5657### 3. Layout & Spacing (CRITICAL)5859- [`space-start-generous`](references/space-start-generous.md) - Start with too much whitespace, then remove60- [`space-systematic-scale`](references/space-systematic-scale.md) - Use a constrained spacing scale, not arbitrary values61- [`space-relationship-proximity`](references/space-relationship-proximity.md) - Use spacing to show relationships between elements62- [`space-dont-fill-screen`](references/space-dont-fill-screen.md) - Constrain content width — avoid filling the whole screen63- [`space-grids-not-required`](references/space-grids-not-required.md) - Use fixed widths when grids are not needed64- [`space-relative-sizing-fails`](references/space-relative-sizing-fails.md) - Avoid raw viewport units without clamping65- [`space-mobile-first`](references/space-mobile-first.md) - Design mobile-first at ~400px, then expand6667### 4. Typography (HIGH)6869- [`type-line-length`](references/type-line-length.md) - Keep line length between 45-75 characters70- [`type-line-height-inverse`](references/type-line-height-inverse.md) - Line height and font size are inversely proportional71- [`type-font-weight-variety`](references/type-font-weight-variety.md) - Choose fonts with at least 5 weight variations72- [`type-no-center-long-text`](references/type-no-center-long-text.md) - Left-align body content — avoid centering long-form text73- [`type-letter-spacing`](references/type-letter-spacing.md) - Tighten letter spacing for headlines, loosen for uppercase74- [`type-align-numbers-right`](references/type-align-numbers-right.md) - Align numbers right in tables for easy comparison7576### 5. Color Systems (HIGH)7778- [`color-define-palette-upfront`](references/color-define-palette-upfront.md) - Define a complete color palette upfront — don't pick colors ad-hoc79- [`color-grayscale-first`](references/color-grayscale-first.md) - Design in grayscale first, add color last80- [`color-accessible-contrast`](references/color-accessible-contrast.md) - Ensure 4.5:1 contrast ratio for body text81- [`color-dark-gray-not-black`](references/color-dark-gray-not-black.md) - Use dark gray instead of pure black for text82- [`color-saturated-grays`](references/color-saturated-grays.md) - Add subtle saturation to grays for warmth or coolness83- [`color-light-backgrounds-dark-text`](references/color-light-backgrounds-dark-text.md) - Use light-colored backgrounds with dark text for badges8485### 6. Depth & Shadows (MEDIUM)8687- [`depth-shadow-scale`](references/depth-shadow-scale.md) - Define a fixed shadow scale — small to extra large88- [`depth-shadow-vertical-offset`](references/depth-shadow-vertical-offset.md) - Use vertical offset for natural-looking shadows89- [`depth-interactive-elevation`](references/depth-interactive-elevation.md) - Use shadow changes to communicate interactivity90- [`depth-light-closer-dark-recedes`](references/depth-light-closer-dark-recedes.md) - Lighter colors feel closer, darker colors recede91- [`depth-overlap-layers`](references/depth-overlap-layers.md) - Overlap elements to create visual layers9293### 7. Borders & Separation (MEDIUM)9495- [`sep-fewer-borders`](references/sep-fewer-borders.md) - Use fewer borders — replace with spacing, shadows, or background color96- [`sep-background-color-separation`](references/sep-background-color-separation.md) - Use background color differences to separate sections97- [`sep-table-spacing-not-lines`](references/sep-table-spacing-not-lines.md) - Use spacing instead of lines in simple tables98- [`sep-card-radio-buttons`](references/sep-card-radio-buttons.md) - Upgrade radio buttons to selectable cards for key choices99100### 8. Images & Content (LOW-MEDIUM)101102- [`img-control-user-content`](references/img-control-user-content.md) - Control user-uploaded image size and aspect ratio103- [`img-text-overlay`](references/img-text-overlay.md) - Add overlays or reduce contrast for text over images104- [`img-dont-scale-up-icons`](references/img-dont-scale-up-icons.md) - Avoid scaling up icons designed for small sizes105- [`img-empty-states`](references/img-empty-states.md) - Design meaningful empty states with clear CTAs106107### 9. Polish & Details (LOW)108109- [`polish-accent-borders`](references/polish-accent-borders.md) - Add accent borders to highlight important elements110- [`polish-custom-bullets`](references/polish-custom-bullets.md) - Replace default bullets with icons or checkmarks111- [`polish-border-radius-personality`](references/polish-border-radius-personality.md) - Match border radius to brand personality112- [`polish-gradient-close-hues`](references/polish-gradient-close-hues.md) - Use gradients with hues within 30 degrees of each other113- [`polish-inner-shadow-images`](references/polish-inner-shadow-images.md) - Add inner shadow to prevent image background bleed114115## Scope & Limitations116117This skill covers **layout, hierarchy, spacing, color, and polish** based on Refactoring UI principles. It does NOT cover:118119- **Font selection & pairing** — choosing distinctive typefaces, avoiding generic AI defaults (Inter, Arial, system-ui), or pairing display + body fonts120- **Animation & motion** — meaningful transitions, micro-interactions, page load sequences, or scroll-triggered reveals121- **Creative direction** — establishing an aesthetic vision, choosing a tone (minimal, maximalist, brutalist, etc.), or differentiating from generic "AI slop" aesthetics122- **Spatial composition** — asymmetric layouts, grid-breaking elements, or unconventional visual flow123124For these concerns, pair this skill with a design-thinking or frontend-design skill that covers creative direction and aesthetic execution.125126## How to Use127128Read individual reference files for detailed explanations and code examples:129130- [Section definitions](references/_sections.md) - Category structure and impact levels131- [Rule template](assets/templates/_template.md) - Template for adding new rules132133## Reference Files134135| File | Description |136|------|-------------|137| [references/_sections.md](references/_sections.md) | Category definitions and ordering |138| [assets/templates/_template.md](assets/templates/_template.md) | Template for new rules |139| [metadata.json](metadata.json) | Version and reference information |