Click on a color to copy its hex value
Copy this code into your tailwind.config.js file
module.exports = {
theme: {
extend: {
colors: {
primary: {
"50": "#9fe6ff",
"100": "#8bd2ff",
"200": "#77beff",
"300": "#63aaff",
"400": "#4f96ff",
"500": "#3B82F6",
"600": "#276ee2",
"700": "#135ace",
"800": "#0046ba",
"900": "#0032a6",
"950": "#001e92"
}
}
}
}
}