Problem Statement
What is the difference between 'extend' and 'theme' in Tailwind configuration?
Explanation
When you use 'extend', Tailwind keeps its default values and adds yours on top.
Using 'theme' replaces the defaults entirely, which is useful if you want to create a fully custom design system.
Code Solution
SolutionRead Only
theme: { extend: { colors: { brand: '#1E40AF' } } }