Help us improve
Share bugs, ideas, or general feedback.
Add depth only when functionally necessary (elevation, not decoration)
npx claudepluginhub gnurio/refactoring-ui-plugin --plugin refactoring-ui-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/refactoring-ui-skills:08-use-shadows-appropriatelyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Add depth and elevation only when functionally necessary, avoiding decorative shadows.
Guides design of elevation and shadow systems: shadow anatomy (offset, blur, spread, color), elevation scales, chromatic shadows, material metaphor, and dark mode shadows.
Remove unnecessary borders, backgrounds, shadows, decorations
Generates layered box-shadow elevation tokens for depth hierarchy. Use when creating elevation systems, card shadows, modal depth, or dark mode shadow variants. Outputs CSS, Tailwind, or JSON.
Share bugs, ideas, or general feedback.
Add depth and elevation only when functionally necessary, avoiding decorative shadows.
Added nuance: Subtle shadows on cards are acceptable (less distracting than borders). Large decorative shadows on static elements are wrong.
Corrective + Evaluative
Removes decorative shadows from static elements, reserves shadows for elevation layers (modals above content, dropdowns above page).
Subtle shadows (small blur, low opacity) on cards are OK. The book recommends them as alternative to borders. Large, flashy shadows on static content are wrong.
| Level | Use Case | CSS Example (approximate) |
|---|---|---|
| None | Static content, text, icons | none |
| Subtle | Cards (alternative to borders) | 0 2px 4px rgba(0,0,0,0.1) |
| Low | Raised cards, buttons | 0 4px 6px rgba(0,0,0,0.1) |
| Medium | Dropdowns, popovers, tooltips | 0 10px 15px rgba(0,0,0,0.1) |
| High | Modals, dialogs, drawers | 0 20px 25px rgba(0,0,0,0.15) |
| Failure | Description | Fix |
|---|---|---|
| Shadow Carpet | Every card has a shadow | Flatten static cards, subtle shadows OK |
| Drop Shadow Abuse | Heavy shadows on static elements | Reserve for elevation/interaction |
| Inconsistent Depth | Similar elements different shadows | Create 2-3 shadow levels, apply consistently |
| Black Shadows | Pure black shadows (harsh) | Use rgba with low opacity, tinted to brand |
| No Modal Separation | Modal doesn't feel above page | Increase shadow spread and blur |
eliminate-visual-clutter (shadows often add clutter)Input: Page with card shadows (0 4px 6px rgba(0,0,0,0.1)), button shadows (0 2px 4px), modal shadow (0 4px 6px), text with text-shadow
Evaluation: FAIL (cluttered)
Recommendation:
0 2px 4px)0 20px 25px rgba(0,0,0,0.15)