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-pragnanz-simplify.md
1---2title: Simplify Complex Visuals into Clear Forms3impact: MEDIUM4tags: ux, pragnanz, simplicity, clarity5---67## Simplify Complex Visuals into Clear Forms89People interpret complex visuals as the simplest form possible. Reduce visual noise to aid comprehension.1011**Incorrect (visually noisy layout):**1213```css14.card {15border: 2px dashed red;16background: linear-gradient(45deg, #f0f, #0ff);17box-shadow: 5px 5px 0 black, 10px 10px 0 gray;18outline: 3px dotted blue;19}20```2122**Correct (clear, simple form):**2324```css25.card {26background: var(--gray-2);27border: 1px solid var(--gray-a4);28border-radius: 12px;29box-shadow: var(--shadow-1);30}31```3233Reference: [Law of Prägnanz](https://lawsofux.com/law-of-pragnanz/)34