link
tailwindcss/custom-colors

Custom Colors

Add custom color palette

customization
colors

Command

Examples

Add primary color scale

// tailwind.config.js
  module.exports = {
    theme: {
      extend: {
        colors: {
          primary: {
            100: '#ebf8ff',
            500: '#1992d4',
            900: '#1e3a8a'
          }
        }
      }
    }
  }