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 |
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: tailwind-ui-refactor3description: Refactoring UI design patterns for Tailwind CSS applications. This skill should be used when writing, reviewing, or refactoring HTML with Tailwind utility classes to improve visual hierarchy, spacing, typography, color, depth, and polish. Triggers on tasks involving UI cleanup, design review, Tailwind refactoring, component styling, or visual improvements. Use when this capability is needed.4---56# Refactoring UI Tailwind CSS Best Practices78Comprehensive 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).910**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.1112## When to Apply1314Reference these guidelines when:15- Refactoring existing Tailwind CSS components16- Writing new UI with Tailwind utility classes17- Reviewing code for visual hierarchy and spacing issues18- Improving design quality without a designer19- Fixing accessibility contrast problems2021## Rule Categories by Priority2223| Priority | Category | Impact | Prefix |24|----------|----------|--------|--------|25| 1 | Design Intent | CRITICAL | `intent-` |26| 2 | Visual Hierarchy | CRITICAL | `hier-` |27| 3 | Layout & Spacing | CRITICAL | `space-` |28| 4 | Typography | HIGH | `type-` |29| 5 | Color Systems | HIGH | `color-` |30| 6 | Depth & Shadows | MEDIUM | `depth-` |31| 7 | Borders & Separation | MEDIUM | `sep-` |32| 8 | Images & Content | LOW-MEDIUM | `img-` |33| 9 | Polish & Details | LOW | `polish-` |3435## Quick Reference3637### 1. Design Intent (CRITICAL)3839- [`intent-audit-before-styling`](references/intent-audit-before-styling.md) - Audit what each element communicates before changing any CSS40- [`intent-remove-before-decorating`](references/intent-remove-before-decorating.md) - Remove unnecessary elements before styling what remains41- [`intent-reduce-cognitive-load`](references/intent-reduce-cognitive-load.md) - Reduce choices per screen — fewer options beat prettier options42- [`intent-progressive-disclosure`](references/intent-progressive-disclosure.md) - Hide secondary information behind interactions43- [`intent-content-drives-layout`](references/intent-content-drives-layout.md) - Let real content determine layout — not the other way around44- [`intent-simplify-over-decorate`](references/intent-simplify-over-decorate.md) - Prefer removing a wrapper over adding 5 utility classes to it45- [`intent-match-context-fidelity`](references/intent-match-context-fidelity.md) - Match design polish to context — admin vs consumer vs product46- [`intent-match-existing-patterns`](references/intent-match-existing-patterns.md) - Audit sibling component patterns before restyling4748### 2. Visual Hierarchy (CRITICAL)4950- [`hier-size-weight-color`](references/hier-size-weight-color.md) - Use size, weight, and color for hierarchy — not just size51- [`hier-deemphasize-secondary`](references/hier-deemphasize-secondary.md) - De-emphasize secondary content instead of emphasizing primary52- [`hier-button-hierarchy`](references/hier-button-hierarchy.md) - Style buttons by visual hierarchy, not semantic importance53- [`hier-label-value-pairs`](references/hier-label-value-pairs.md) - Combine labels and values into natural language54- [`hier-semantic-vs-visual`](references/hier-semantic-vs-visual.md) - Separate visual hierarchy from document hierarchy55- [`hier-icon-sizing`](references/hier-icon-sizing.md) - Size icons relative to adjacent text, not to fill space56- [`hier-color-hierarchy-on-dark`](references/hier-color-hierarchy-on-dark.md) - Use opacity or muted colors for hierarchy on colored backgrounds5758### 3. Layout & Spacing (CRITICAL)5960- [`space-start-generous`](references/space-start-generous.md) - Start with too much whitespace, then remove61- [`space-systematic-scale`](references/space-systematic-scale.md) - Use a constrained spacing scale, not arbitrary values62- [`space-relationship-proximity`](references/space-relationship-proximity.md) - Use spacing to show relationships between elements63- [`space-dont-fill-screen`](references/space-dont-fill-screen.md) - Constrain content width — avoid filling the whole screen64- [`space-grids-not-required`](references/space-grids-not-required.md) - Use fixed widths when grids are not needed65- [`space-relative-sizing-fails`](references/space-relative-sizing-fails.md) - Avoid raw viewport units without clamping66- [`space-mobile-first`](references/space-mobile-first.md) - Design mobile-first at ~400px, then expand6768### 4. Typography (HIGH)6970- [`type-line-length`](references/type-line-length.md) - Keep line length between 45-75 characters71- [`type-line-height-inverse`](references/type-line-height-inverse.md) - Line height and font size are inversely proportional72- [`type-font-weight-variety`](references/type-font-weight-variety.md) - Choose fonts with at least 5 weight variations73- [`type-no-center-long-text`](references/type-no-center-long-text.md) - Left-align body content — avoid centering long-form text74- [`type-letter-spacing`](references/type-letter-spacing.md) - Tighten letter spacing for headlines, loosen for uppercase75- [`type-align-numbers-right`](references/type-align-numbers-right.md) - Align numbers right in tables for easy comparison7677### 5. Color Systems (HIGH)7879- [`color-define-palette-upfront`](references/color-define-palette-upfront.md) - Define a complete color palette upfront — don't pick colors ad-hoc80- [`color-grayscale-first`](references/color-grayscale-first.md) - Design in grayscale first, add color last81- [`color-accessible-contrast`](references/color-accessible-contrast.md) - Ensure 4.5:1 contrast ratio for body text82- [`color-dark-gray-not-black`](references/color-dark-gray-not-black.md) - Use dark gray instead of pure black for text83- [`color-saturated-grays`](references/color-saturated-grays.md) - Add subtle saturation to grays for warmth or coolness84- [`color-light-backgrounds-dark-text`](references/color-light-backgrounds-dark-text.md) - Use light-colored backgrounds with dark text for badges8586### 6. Depth & Shadows (MEDIUM)8788- [`depth-shadow-scale`](references/depth-shadow-scale.md) - Define a fixed shadow scale — small to extra large89- [`depth-shadow-vertical-offset`](references/depth-shadow-vertical-offset.md) - Use vertical offset for natural-looking shadows90- [`depth-interactive-elevation`](references/depth-interactive-elevation.md) - Use shadow changes to communicate interactivity91- [`depth-light-closer-dark-recedes`](references/depth-light-closer-dark-recedes.md) - Lighter colors feel closer, darker colors recede92- [`depth-overlap-layers`](references/depth-overlap-layers.md) - Overlap elements to create visual layers9394### 7. Borders & Separation (MEDIUM)9596- [`sep-fewer-borders`](references/sep-fewer-borders.md) - Use fewer borders — replace with spacing, shadows, or background color97- [`sep-background-color-separation`](references/sep-background-color-separation.md) - Use background color differences to separate sections98- [`sep-table-spacing-not-lines`](references/sep-table-spacing-not-lines.md) - Use spacing instead of lines in simple tables99- [`sep-card-radio-buttons`](references/sep-card-radio-buttons.md) - Upgrade radio buttons to selectable cards for key choices100101### 8. Images & Content (LOW-MEDIUM)102103- [`img-control-user-content`](references/img-control-user-content.md) - Control user-uploaded image size and aspect ratio104- [`img-text-overlay`](references/img-text-overlay.md) - Add overlays or reduce contrast for text over images105- [`img-dont-scale-up-icons`](references/img-dont-scale-up-icons.md) - Avoid scaling up icons designed for small sizes106- [`img-empty-states`](references/img-empty-states.md) - Design meaningful empty states with clear CTAs107108### 9. Polish & Details (LOW)109110- [`polish-accent-borders`](references/polish-accent-borders.md) - Add accent borders to highlight important elements111- [`polish-custom-bullets`](references/polish-custom-bullets.md) - Replace default bullets with icons or checkmarks112- [`polish-border-radius-personality`](references/polish-border-radius-personality.md) - Match border radius to brand personality113- [`polish-gradient-close-hues`](references/polish-gradient-close-hues.md) - Use gradients with hues within 30 degrees of each other114- [`polish-inner-shadow-images`](references/polish-inner-shadow-images.md) - Add inner shadow to prevent image background bleed115116## Scope & Limitations117118This skill covers **layout, hierarchy, spacing, color, and polish** based on Refactoring UI principles. It does NOT cover:119120- **Font selection & pairing** — choosing distinctive typefaces, avoiding generic AI defaults (Inter, Arial, system-ui), or pairing display + body fonts121- **Animation & motion** — meaningful transitions, micro-interactions, page load sequences, or scroll-triggered reveals122- **Creative direction** — establishing an aesthetic vision, choosing a tone (minimal, maximalist, brutalist, etc.), or differentiating from generic "AI slop" aesthetics123- **Spatial composition** — asymmetric layouts, grid-breaking elements, or unconventional visual flow124125For these concerns, pair this skill with a design-thinking or frontend-design skill that covers creative direction and aesthetic execution.126127## How to Use128129Read individual reference files for detailed explanations and code examples:130131- [Section definitions](references/_sections.md) - Category structure and impact levels132- [Rule template](assets/templates/_template.md) - Template for adding new rules133134## Reference Files135136| File | Description |137|------|-------------|138| [references/_sections.md](references/_sections.md) | Category definitions and ordering |139| [assets/templates/_template.md](assets/templates/_template.md) | Template for new rules |140| [metadata.json](metadata.json) | Version and reference information |141142---143> Converted and distributed by [TomeVault](https://tomevault.io/claim/pproenca) — claim your Tome and manage your conversions.144<!-- tomevault:4.0:skill_md:2026-04-11 -->