Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/ux-aesthetic-usability.md
1---2title: Visual Polish Increases Perceived Usability3impact: MEDIUM4tags: ux, aesthetic, usability, polish5---67## Visual Polish Increases Perceived Usability89Users perceive aesthetically pleasing design as more usable. Small visual details compound into trust.1011**Incorrect (unstyled, raw elements):**1213```css14.card {15border: 1px solid black;16padding: 10px;17}18```1920**Correct (considered visual treatment):**2122```css23.card {24padding: 16px;25background: var(--gray-2);26border: 1px solid var(--gray-a4);27border-radius: 12px;28box-shadow: var(--shadow-1);29}30```3132Reference: [Aesthetic-Usability Effect](https://lawsofux.com/aesthetic-usability-effect/)33