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/timing-consistent.md
1---2title: Consistent Timing for Similar Elements3impact: CRITICAL4impactDescription: Inconsistent timing across similar elements creates a disjointed, unpolished feel and undermines design system coherence.5tags: timing, consistency, animation6---78## Consistent Timing for Similar Elements910Similar elements must use identical timing values.1112**Incorrect (inconsistent timing):**1314```css15.button-primary { transition: 200ms; }16.button-secondary { transition: 150ms; }17```1819**Correct (consistent timing):**2021```css22.button-primary { transition: 200ms; }23.button-secondary { transition: 200ms; }24```25