@sandlada/mdk
Version:
A JavaScript library based on Material Design 3, providing data such as color, shape, shadow level, etc.
31 lines (30 loc) • 1.03 kB
JavaScript
export class Duration {
static Short1 = '50ms';
static Short2 = '100ms';
static Short3 = '150ms';
static Short4 = '200ms';
static Medium1 = '250ms';
static Medium2 = '300ms';
static Medium3 = '350ms';
static Medium4 = '400ms';
static Long1 = '450ms';
static Long2 = '500ms';
static Long3 = '550ms';
static Long4 = '600ms';
static ExtraLong1 = '700ms';
static ExtraLong2 = '800ms';
static ExtraLong3 = '900ms';
static ExtraLong4 = '1000ms';
static ExpressiveFastSpatial = `350ms`;
static ExpressiveDefaultSpatial = `500ms`;
static ExpressiveSlowSpatial = `650ms`;
static ExpressiveFastEffects = `150ms`;
static ExpressiveDefaultEffects = `200ms`;
static ExpressiveSlowEffects = `300ms`;
static StandardFastSpatial = `350ms`;
static StandardDefaultSpatial = `500ms`;
static StandardSlowSpatial = `750ms`;
static StandardFastEffects = `150ms`;
static StandardDefaultEffects = `200ms`;
static StandardSlowEffects = `300ms`;
}