| name | design-critique |
| description | Evaluate and improve existing designs with structured analysis and actionable code fixes. Trigger phrases: "design critique", "review design", "improve design", "design audit", "design feedback", "evaluate UI", "design score", "accessibility audit", "visual review", "design assessment"
|
| license | MIT |
Design Critique
Systematically evaluate existing designs and provide specific, actionable improvements with code.
Prerequisites
Before critiquing, check for existing design context:
- Read any design-context files for brand guidelines, design system tokens, or stated goals.
- Understand the project's purpose, audience, and constraints before making recommendations.
Step 1: Visual Hierarchy Assessment
Evaluate how effectively the design guides the user's eye.
Checklist
Common Fixes
.heading { font-size: 1.5rem; color: #333; }
.subheading { font-size: 1.25rem; color: #333; }
.body { font-size: 1rem; color: #333; }
.heading { font-size: 2.5rem; font-weight: 800; color: var(--gray-900); letter-spacing: -0.02em; }
.subheading { font-size: 1.25rem; font-weight: 500; color: var(--gray-500); }
.body { font-size: 1rem; font-weight: 400; color: var(--gray-700); line-height: 1.65; }
Step 2: Color Usage Evaluation
Checklist
Common Fixes
.muted-text { color: #aaa; }
.muted-text { color: #737373; }
a { color: var(--brand-500); text-decoration: underline; text-underline-offset: 2px; }
Step 3: Typography Consistency Check
Checklist
Common Fixes
.content { max-width: 1400px; }
.content { max-width: 1400px; }
.content .prose { max-width: 65ch; }
:root {
--scale: 1.25;
--text-sm: calc(1rem / var(--scale));
--text-base: 1rem;
--text-lg: calc(1rem * var(--scale));
--text-xl: calc(1rem * var(--scale) * var(--scale));
}
Step 4: Spacing and Alignment Audit
Checklist
Common Fixes
.card { padding: 17px; margin-bottom: 23px; }
.section { padding: 45px 30px; }
.card { padding: var(--space-5); margin-bottom: var(--space-6); }
.section { padding: var(--space-12) var(--space-8); }
.container {
max-width: 1200px;
margin-inline: auto;
padding-inline: var(--space-6);
}
Step 5: Accessibility Review
Contrast
Keyboard Navigation
Screen Reader
Common Fixes
*:focus { outline: none; }
*:focus-visible {
outline: 2px solid var(--brand-500);
outline-offset: 2px;
}
.skip-link {
position: absolute;
top: -100%;
left: 0;
padding: 0.5rem 1rem;
background: var(--brand-500);
color: white;
z-index: 9999;
}
.skip-link:focus {
top: 0;
}
<a href="#main-content" class="skip-link">Skip to main content</a>
Step 6: Responsive Behavior Check
Checklist
Common Fixes
.card { width: 400px; }
.card { width: 100%; max-width: 400px; }
.icon-button { width: 24px; height: 24px; }
.icon-button {
width: 24px;
height: 24px;
padding: 10px;
margin: -10px;
}
img {
max-width: 100%;
height: auto;
}
Step 7: Performance Impact Assessment
Checklist
Common Fixes
.card:hover { margin-top: -5px; }
.card:hover { transform: translateY(-5px); }
img {
aspect-ratio: 16 / 9;
width: 100%;
object-fit: cover;
}
Step 8: Specific Improvement Recommendations
When providing feedback, always follow this structure:
Recommendation Format
### Issue: [What's wrong]
**Severity**: High / Medium / Low
**Category**: Hierarchy | Color | Typography | Spacing | Accessibility | Responsive | Performance
**Problem**: [1-2 sentences describing what's wrong and why it matters]
**Fix**:
[Specific CSS/HTML code to resolve it]
**Impact**: [What improves -- readability, usability, aesthetics, performance]
Example
### Issue: Hero section lacks visual hierarchy
**Severity**: High
**Category**: Hierarchy
**Problem**: The hero headline, subheadline, and CTA button are all similar
in visual weight. Users cannot quickly identify the primary message or action.
**Fix**:
.hero-headline {
font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
font-weight: 800;
line-height: 1.05;
letter-spacing: -0.03em;
color: var(--gray-900);
margin-bottom: var(--space-4);
}
.hero-subtitle {
font-size: var(--text-xl);
color: var(--gray-500);
max-width: 50ch;
margin-bottom: var(--space-8);
}
.hero-cta {
font-size: var(--text-lg);
padding: var(--space-3) var(--space-8);
background: var(--brand-500);
color: white;
font-weight: 600;
}
**Impact**: Users immediately see the headline, understand the value proposition
from the subtitle, and have a clear next action.
Step 9: Before/After Comparison Approach
When suggesting changes, provide both states for comparison.
Structure
- Identify the specific element or section.
- Show the current CSS (before).
- Show the improved CSS (after).
- Explain what changed and why.
.card {
padding: 20px;
border: 1px solid #eee;
background: white;
}
.card h3 {
font-size: 18px;
margin-bottom: 8px;
}
.card p {
font-size: 14px;
color: #666;
}
.card {
padding: var(--space-6);
border: 1px solid var(--border-default);
border-radius: var(--radius-lg);
background: var(--bg-secondary);
transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
box-shadow: var(--shadow-md);
transform: translateY(-2px);
}
.card h3 {
font-size: var(--text-xl);
font-weight: 700;
color: var(--text-primary);
margin-bottom: var(--space-2);
}
.card p {
font-size: var(--text-sm);
color: var(--text-secondary);
line-height: 1.6;
}
Step 10: Scoring Framework
Rate the design across these dimensions (1-10 scale):
Categories
| Category | Weight | What to evaluate |
|---|
| Hierarchy | 25% | Clear focal points, scannable, directed flow |
| Consistency | 25% | Spacing scale, color system, type system, patterns |
| Aesthetics | 25% | Color harmony, whitespace, polish, modern feel |
| Usability | 25% | Accessibility, responsiveness, clarity, performance |
Scoring Rubric
| Score | Meaning |
|---|
| 1-2 | Fundamentally broken. Major rework needed. |
| 3-4 | Significant issues. Multiple areas need attention. |
| 5-6 | Functional but unpolished. Clear improvement areas. |
| 7-8 | Good. Minor refinements would elevate it. |
| 9-10 | Excellent. Professional quality, well-executed. |
Report Template
## Design Critique Report
### Overall Score: X/10
| Category | Score | Notes |
|-------------|-------|--------------------------------------|
| Hierarchy | X/10 | [brief note] |
| Consistency | X/10 | [brief note] |
| Aesthetics | X/10 | [brief note] |
| Usability | X/10 | [brief note] |
### Top 3 Strengths
1. [What's working well]
2. [What's working well]
3. [What's working well]
### Top 3 Improvements (with code)
1. [Highest impact fix -- include CSS]
2. [Second highest impact fix -- include CSS]
3. [Third highest impact fix -- include CSS]
### Quick Wins (< 5 min each)
- [Small change, big impact]
- [Small change, big impact]
Critique Process Summary
- Read design context and understand goals.
- Assess visual hierarchy: Is there a clear 1-2-3 priority?
- Evaluate colors: Cohesive? Accessible? Purposeful?
- Check typography: Consistent scale? Good line length? Readable?
- Audit spacing: Using a system? Aligned? Consistent?
- Review accessibility: Contrast, focus, labels, keyboard?
- Test responsive: Mobile stacking, touch targets, overflow?
- Check performance: Animations efficient? Images sized? Fonts loaded?
- Provide specific fixes: Always include code, never just describe.
- Score and prioritize: Give an overall score and rank recommendations by impact.