Problem Statement
How do you extend Tailwind’s theme without removing defaults?
Explanation
To extend the theme, you use theme.extend inside tailwind.config.js. This merges your new values with Tailwind’s existing ones instead of replacing them.
It’s useful for adding brand colors, spacing scales, or animations while preserving core styles.
