Explanation
Extends the default color palette with custom colors
Examples
Add primary color scale
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
primary: {
100: '#ebf8ff',
500: '#1992d4',
900: '#1e3a8a'
}
}
}
}
}