Tailwind Changelog
Track all updates, improvements, and bug fixes
2026
vv3.4.0•January 22, 2026•by Tailwind Labs
Added
Added extended color palettes and a new animation API for smoother transitions and custom animations.
Detailed Changes
Detailed Changes
- New Colors:
- Added 10 new color palettes (e.g., amber, lime, emerald) for richer designs.
- Animation API:
- Introduced @keyframes and animation utilities for custom CSS animations:
cssCopy@keyframes pulse {
Use with animate-pulse in HTML.
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
- Introduced @keyframes and animation utilities for custom CSS animations:
- Plugin Updates:
- Updated typography plugin with better prose styling.
- Performance:
- Reduced CSS file size by 10% with improved purging.