Tailwind CSS Colors
In tailwind css default color palette can be changed by configuring tailwind css file based on your design and theme preference.
Default Color Pallets
Tailwind offers a big range of professionally designed default color schemes which may furnish your requirements if you have not decided on a particular color scheme so far.
Customize colors
tailwind.config.js file helps you to change colors as per your requirements in case you don’t want to use default colors. you simply need to change color object in tailwind.config.js file
// tailwind.config.js
module.exports = {
theme: {
colors: {
// Configure your color palette here
}
}
}