link
tailwindcss/config-theme

Extend Theme

Customize theme values

config
customization

Command

Examples

Add custom color

// tailwind.config.js
  module.exports = {
    theme: {
      extend: {
        colors: {
          'brand-blue': '#1992d4'
        }
      }
    }
  }