Explanation
Extends default theme with custom values in tailwind.config.js
Examples
Add custom color
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'brand-blue': '#1992d4'
}
}
}
}