Banners & Headers
$
Animated Text
FREEAnimated text effects for terminal output: typewriter, gradient waves, shimmer passes, and bouncing emphasis.
animatedgradientshimmer
# Preview
BOOTING PREVIEW
# Usage
import { typewriter, gradientWave, shimmer, bouncingText } from '@taracod/termui';
await typewriter({ text: 'Hello, world!', speed: 40, color: 'brightGreen' });
await gradientWave({ text: 'Rainbow text!', duration: 3000 });
await shimmer({ text: 'Sparkle!', duration: 3000 });
await bouncingText({ text: 'BOUNCE', duration: 4000 });# API
| Prop | Type | Default | Description |
|---|---|---|---|
| text | string | required | Text to animate |
| speed | number | 40 | Milliseconds per character or frame |
| duration | number | 3000 | Total animation duration |
| colors | AnsiColor[] | rainbow | Palette used by gradient effects |