Tailwind Changelog

Track all updates, improvements, and bug fixes

← Back to Documentation

2026

vv3.4.0January 22, 2026by 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 {
       0%, 100% { opacity: 1; }
       50% { opacity: 0.5; }
      }

      Use with animate-pulse in HTML.
  • Plugin Updates:
    • Updated typography plugin with better prose styling.
  • Performance:
    • Reduced CSS file size by 10% with improved purging.