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 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.4---5
6# Refactoring UI Tailwind CSS Best Practices
7
8Comprehensive 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).
9
10**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.
11
12## When to Apply
13
14Reference these guidelines when:
15- Refactoring existing Tailwind CSS components
16- Writing new UI with Tailwind utility classes
17- Reviewing code for visual hierarchy and spacing issues
18- Improving design quality without a designer
19- Fixing accessibility contrast problems
20
21## Rule Categories by Priority
22
23| 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-` |
34
35## Quick Reference
36
37### 1. Design Intent (CRITICAL)
38
39- [`intent-audit-before-styling`](references/intent-audit-before-styling.md) - Audit what each element communicates before changing any CSS
40- [`intent-remove-before-decorating`](references/intent-remove-before-decorating.md) - Remove unnecessary elements before styling what remains
41- [`intent-reduce-cognitive-load`](references/intent-reduce-cognitive-load.md) - Reduce choices per screen — fewer options beat prettier options
42- [`intent-progressive-disclosure`](references/intent-progressive-disclosure.md) - Hide secondary information behind interactions
43- [`intent-content-drives-layout`](references/intent-content-drives-layout.md) - Let real content determine layout — not the other way around
44- [`intent-simplify-over-decorate`](references/intent-simplify-over-decorate.md) - Prefer removing a wrapper over adding 5 utility classes to it
45- [`intent-match-context-fidelity`](references/intent-match-context-fidelity.md) - Match design polish to context — admin vs consumer vs product
46- [`intent-match-existing-patterns`](references/intent-match-existing-patterns.md) - Audit sibling component patterns before restyling
47
48### 2. Visual Hierarchy (CRITICAL)
49
50- [`hier-size-weight-color`](references/hier-size-weight-color.md) - Use size, weight, and color for hierarchy — not just size
51- [`hier-deemphasize-secondary`](references/hier-deemphasize-secondary.md) - De-emphasize secondary content instead of emphasizing primary
52- [`hier-button-hierarchy`](references/hier-button-hierarchy.md) - Style buttons by visual hierarchy, not semantic importance
53- [`hier-label-value-pairs`](references/hier-label-value-pairs.md) - Combine labels and values into natural language
54- [`hier-semantic-vs-visual`](references/hier-semantic-vs-visual.md) - Separate visual hierarchy from document hierarchy
55- [`hier-icon-sizing`](references/hier-icon-sizing.md) - Size icons relative to adjacent text, not to fill space
56- [`hier-color-hierarchy-on-dark`](references/hier-color-hierarchy-on-dark.md) - Use opacity or muted colors for hierarchy on colored backgrounds
57
58### 3. Layout & Spacing (CRITICAL)
59
60- [`space-start-generous`](references/space-start-generous.md) - Start with too much whitespace, then remove
61- [`space-systematic-scale`](references/space-systematic-scale.md) - Use a constrained spacing scale, not arbitrary values
62- [`space-relationship-proximity`](references/space-relationship-proximity.md) - Use spacing to show relationships between elements
63- [`space-dont-fill-screen`](references/space-dont-fill-screen.md) - Constrain content width — avoid filling the whole screen
64- [`space-grids-not-required`](references/space-grids-not-required.md) - Use fixed widths when grids are not needed
65- [`space-relative-sizing-fails`](references/space-relative-sizing-fails.md) - Avoid raw viewport units without clamping
66- [`space-mobile-first`](references/space-mobile-first.md) - Design mobile-first at ~400px, then expand
67
68### 4. Typography (HIGH)
69
70- [`type-line-length`](references/type-line-length.md) - Keep line length between 45-75 characters
71- [`type-line-height-inverse`](references/type-line-height-inverse.md) - Line height and font size are inversely proportional
72- [`type-font-weight-variety`](references/type-font-weight-variety.md) - Choose fonts with at least 5 weight variations
73- [`type-no-center-long-text`](references/type-no-center-long-text.md) - Left-align body content — avoid centering long-form text
74- [`type-letter-spacing`](references/type-letter-spacing.md) - Tighten letter spacing for headlines, loosen for uppercase
75- [`type-align-numbers-right`](references/type-align-numbers-right.md) - Align numbers right in tables for easy comparison
76
77### 5. Color Systems (HIGH)
78
79- [`color-define-palette-upfront`](references/color-define-palette-upfront.md) - Define a complete color palette upfront — don't pick colors ad-hoc
80- [`color-grayscale-first`](references/color-grayscale-first.md) - Design in grayscale first, add color last
81- [`color-accessible-contrast`](references/color-accessible-contrast.md) - Ensure 4.5:1 contrast ratio for body text
82- [`color-dark-gray-not-black`](references/color-dark-gray-not-black.md) - Use dark gray instead of pure black for text
83- [`color-saturated-grays`](references/color-saturated-grays.md) - Add subtle saturation to grays for warmth or coolness
84- [`color-light-backgrounds-dark-text`](references/color-light-backgrounds-dark-text.md) - Use light-colored backgrounds with dark text for badges
85
86### 6. Depth & Shadows (MEDIUM)
87
88- [`depth-shadow-scale`](references/depth-shadow-scale.md) - Define a fixed shadow scale — small to extra large
89- [`depth-shadow-vertical-offset`](references/depth-shadow-vertical-offset.md) - Use vertical offset for natural-looking shadows
90- [`depth-interactive-elevation`](references/depth-interactive-elevation.md) - Use shadow changes to communicate interactivity
91- [`depth-light-closer-dark-recedes`](references/depth-light-closer-dark-recedes.md) - Lighter colors feel closer, darker colors recede
92- [`depth-overlap-layers`](references/depth-overlap-layers.md) - Overlap elements to create visual layers
93
94### 7. Borders & Separation (MEDIUM)
95
96- [`sep-fewer-borders`](references/sep-fewer-borders.md) - Use fewer borders — replace with spacing, shadows, or background color
97- [`sep-background-color-separation`](references/sep-background-color-separation.md) - Use background color differences to separate sections
98- [`sep-table-spacing-not-lines`](references/sep-table-spacing-not-lines.md) - Use spacing instead of lines in simple tables
99- [`sep-card-radio-buttons`](references/sep-card-radio-buttons.md) - Upgrade radio buttons to selectable cards for key choices
100
101### 8. Images & Content (LOW-MEDIUM)
102
103- [`img-control-user-content`](references/img-control-user-content.md) - Control user-uploaded image size and aspect ratio
104- [`img-text-overlay`](references/img-text-overlay.md) - Add overlays or reduce contrast for text over images
105- [`img-dont-scale-up-icons`](references/img-dont-scale-up-icons.md) - Avoid scaling up icons designed for small sizes
106- [`img-empty-states`](references/img-empty-states.md) - Design meaningful empty states with clear CTAs
107
108### 9. Polish & Details (LOW)
109
110- [`polish-accent-borders`](references/polish-accent-borders.md) - Add accent borders to highlight important elements
111- [`polish-custom-bullets`](references/polish-custom-bullets.md) - Replace default bullets with icons or checkmarks
112- [`polish-border-radius-personality`](references/polish-border-radius-personality.md) - Match border radius to brand personality
113- [`polish-gradient-close-hues`](references/polish-gradient-close-hues.md) - Use gradients with hues within 30 degrees of each other
114- [`polish-inner-shadow-images`](references/polish-inner-shadow-images.md) - Add inner shadow to prevent image background bleed
115
116## Scope & Limitations
117
118This skill covers **layout, hierarchy, spacing, color, and polish** based on Refactoring UI principles. It does NOT cover:
119
120- **Font selection & pairing** — choosing distinctive typefaces, avoiding generic AI defaults (Inter, Arial, system-ui), or pairing display + body fonts
121- **Animation & motion** — meaningful transitions, micro-interactions, page load sequences, or scroll-triggered reveals
122- **Creative direction** — establishing an aesthetic vision, choosing a tone (minimal, maximalist, brutalist, etc.), or differentiating from generic "AI slop" aesthetics
123- **Spatial composition** — asymmetric layouts, grid-breaking elements, or unconventional visual flow
124
125For these concerns, pair this skill with a design-thinking or frontend-design skill that covers creative direction and aesthetic execution.
126
127## How to Use
128
129Read individual reference files for detailed explanations and code examples:
130
131- [Section definitions](references/_sections.md) - Category structure and impact levels
132- [Rule template](assets/templates/_template.md) - Template for adding new rules
133
134## Reference Files
135
136| 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 |