Brand consistency
Quick answer
- 01What is it?
- Align animation style with brand identity using Disney's principles. It stands out by giving brand and messaging a defined shape, so the agent asks for better context and returns a more usable result.
- 02Inputs
- Context for brand and messaging: your goals, audience, constraints, and any source material the skill asks for.
- 03Output
- A ready-to-use result for brand and messaging: the analysis, copy, or recommendations the agent produces.
Add this skill
Install as a package
Installs this one skill package for your coding agent, including any supporting files that skill ships with — not every skill in the repository. Read the tutorial.
$ npx skills add dylantarre/animation-principles --skill brand-consistencyUse in Profound
Copy this file into a new Profound Skill. That's it, nothing else to install.
Copy and create in ProfoundBrand Consistency
Align animation style with brand identity using Disney's principles.
Problem Indicators
- Animation feels "off-brand"
- Generic motion that could be any product
- Inconsistent animation styles across features
- Motion conflicts with brand voice
- Users don't recognize the product's personality
Diagnosis by Principle
Appeal
Issue: Animation lacks distinctive character Fix: Define brand motion attributes. Is your brand playful (bouncy easing), professional (smooth, minimal), energetic (quick, snappy)?
Exaggeration
Issue: Wrong level of drama for brand Fix: Match exaggeration to brand personality. Luxury = subtle. Playful = bouncy. Corporate = restrained.
Timing
Issue: Speed doesn't match brand energy Fix: Fast brands: 100-200ms. Calm brands: 300-500ms. Define a timing scale and use consistently.
Squash and Stretch
Issue: Elastic effects conflict with serious brand Fix: Reserve squash/stretch for playful brands. Use scale transforms for professional brands.
Secondary Action
Issue: Details don't reinforce brand Fix: Secondary actions should amplify brand personality. A fun brand might have playful ripples; a serious brand uses subtle fades.
Quick Fixes
- Create a motion style guide - Document easing, duration, principles used
- Define 3-5 brand motion words - "Swift, precise, confident"
- Build reusable animation tokens - Consistent timing/easing variables
- Audit existing animations - Find outliers
- Create animation components - Enforce consistency through code
Troubleshooting Checklist
- Can you describe animation in 3 brand words?
- Does motion match brand voice guidelines?
- Are easing curves consistent across features?
- Is timing scale documented and followed?
- Would a competitor use identical animation?
- Do animations feel like the same product?
- Test: Show animation without UI—recognizable as your brand?
- Review with brand/design team
Code Pattern
:root {
/* Brand motion tokens */
--brand-ease-default: cubic-bezier(0.4, 0, 0.2, 1);
--brand-ease-enter: cubic-bezier(0, 0, 0.2, 1);
--brand-ease-exit: cubic-bezier(0.4, 0, 1, 1);
--brand-duration-fast: 150ms;
--brand-duration-normal: 250ms;
--brand-duration-slow: 400ms;
}
Common questions
How do I install Brand consistency in Cursor, Claude Code, or Codex?
Run npx skills add dylantarre/animation-principles --skill brand-consistency in the project where you want it, then ask your agent for the skill by name. The --skill flag installs only Brand consistency, not every skill in the repository.
Where does Brand consistency come from and what license is it under?
Brand consistency comes from the dylantarre/animation-principles repository on GitHub. That repository has 54 GitHub stars. The skill is published under the MIT license.
Prefer plain text? Read the Brand consistency guide as markdown.