Token reference
Motion
Durations and easing curves for feedback and spatial continuity.
Overview
Durations and easing curves for feedback and spatial continuity. Values come from canonical DTCG JSON or are derived from governed responsive and preference contracts. Published names are versioned APIs. This page is a governed extension to the audited reference information architecture.
Token Reference
| Token path | Set | Type | Canonical value | CSS custom property |
|---|---|---|---|---|
motion.duration.instant | global | duration | 0ms | --he-motion-duration-instant |
motion.duration.fast | global | duration | 100ms | --he-motion-duration-fast |
motion.duration.standard | global | duration | 200ms | --he-motion-duration-standard |
motion.duration.emphasized | global | duration | 300ms | --he-motion-duration-emphasized |
motion.duration.slow | global | duration | 500ms | --he-motion-duration-slow |
motion.duration.reveal | global | duration | 900ms | --he-motion-duration-reveal |
motion.easing.standard | global | cubicBezier | [0.2,0,0,1] | --he-motion-easing-standard |
motion.easing.enter | global | cubicBezier | [0,0,0,1] | --he-motion-easing-enter |
motion.easing.exit | global | cubicBezier | [0.3,0,1,1] | --he-motion-easing-exit |
Usage
- Consume semantic or component aliases in application code.
- Use global values only to author or review foundation aliases.
- Keep responsive and preference behavior aligned across Web and Flutter.
- Do not edit generated outputs or introduce an unregistered literal.
Accessibility
Changes require cross-theme contrast, text-scaling, reflow, forced-colors, reduced-motion, and input-modality review where applicable. A token cannot make essential meaning depend on color, opacity, motion, elevation, or viewport size alone.
Web and Flutter API
/* Web */
color: var(--he-motion-duration-instant);
// Flutter
final value = HeTokens.motionDurationInstant;The example uses an exact generated name. The table is the complete Web reference; global and semantic Flutter constants are generated in he_tokens.g.dart, while component contracts own component-level values.