Generate a Tailwind color palette from one base color.
module.exports = {
theme: {
extend: {
colors: {
brand: {
50: '#c6eafa',
100: '#b2e2f8',
200: '#89d3f4',
300: '#60c4f0',
400: '#37b4ed',
500: '#0ea5e9',
600: '#0098e6',
700: '#008ce3',
800: '#007fe0',
900: '#0073dd',
950: '#006cdb',
}
}
}
}
}