Configure custom color tokens in tailwind.config.js for utility class generation.
module.exports = {
theme: {
extend: {
colors: {
brand: {
50: '#f0f9ff',
500: '#0284c7',
900: '#0c4a6e',
},
},
},
},
};