Skip to content
hightouchUI

Design system

v42.1.0

Motion

Motion in Hightouch UI is purposeful and fast: it clarifies state changes and spatial relationships, never decorates. Durations and easing curves come from theme tokens so animation stays consistent across the product.

Principles

  • High-frequency interactions get no animation. Something used dozens of times a day needs speed, not delight.
  • Entries decelerate; exits get out of the way. Enter with an easeOut curve; exits are shorter and simpler than entries.
  • Elements never come from nowhere. Enter from scale(0.9–0.95), not zero, with transform-origin toward the trigger; exit direction mirrors entry direction.
  • Feedback is felt, not seen. Hovers are 100–150ms with at most 1–2% scale; presses are scale(0.97).
  • Toggleable elements animate interruptibly. Rapid open/close must retarget smoothly mid-animation; spring bounce defaults to zero.

Easing

The easeOut curves are ordered from most subtle (quad) to most dramatic (expo). Use an easeOut curve for elements entering or leaving the screen, and an easeInOut curve when moving something already on screen to a new position.
easeOutQuadBasic transitions: hover, background, color.
easeOutCubicSmall popovers: selects, menus.
easeOutQuartLarger popovers: modals, dialogs.
easeOutQuintPage transitions, major UI changes.
easeOutExpoAttention-grabbing motion: notifications.

Duration

fastest60ms
Micro-feedback.
faster100ms
Small state changes.
fast150ms
Hover, basic transitions.
normal200ms
Opening popovers and menus.
slow300ms
Modals and dialogs.
slower400ms
Larger surfaces.
dramatic600ms
Deliberate, emphasis.

Reduced motion

Hightouch UI respects the operating system's "reduce motion" accessibility setting automatically — no configuration needed. When it's on, transform and layout animations (scale, slide, movement) are dropped while opacity and color transitions still play, following the WCAG principle of reducing motion rather than removing it entirely. This applies to every component, including overlays like dialogs, drawers, menus, and tooltips.

Custom animations built with motion inherit this behavior. If an animation drives a non-transform property that shouldn't jump under reduced motion (for example an animated width), branch on the useReducedMotion hook to provide an instant fallback.