From f94a45216edfd9d07854bbb136ad28b4936afc54 Mon Sep 17 00:00:00 2001 From: Elizabeth Mitchell Date: Thu, 4 Aug 2022 04:18:54 -0700 Subject: [PATCH] chore(motion): update standard easing to latest value PiperOrigin-RevId: 465277416 --- motion/animation.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/motion/animation.ts b/motion/animation.ts index 3b33cc1edd..46e5207c60 100644 --- a/motion/animation.ts +++ b/motion/animation.ts @@ -4,11 +4,13 @@ * SPDX-License-Identifier: Apache-2.0 */ +/** + * Easing functions to use for web animations. + * + * TODO(b/241113345): replace with tokens + */ export enum Easing { - STANDARD = 'cubic-bezier(0.4, 0, 0.2, 1)', - ACCELERATION = 'cubic-bezier(0.4, 0, 1, 1)', - DECELERATION = 'cubic-bezier(0, 0, 0.2, 1)', - SHARP = 'cubic-bezier(0.4, 0, 0.6, 1)', + STANDARD = 'cubic-bezier(0.2, 0, 0, 1)', } /**