WebUtility
Universal Toolkit
WidgetsCalculatorsConvertersGenerators
Sign In
HomeToolsDesignTailwind Color Generator
Back to Design

Related Tools

Box Shadow Generator

Create custom CSS box shadows with visual controls and live preview

Color Palette Generator

Generate harmonious color palettes from a seed color with multiple modes

CSS Cubic Bezier

Visual cubic-bezier curve generator for CSS animations

WebUtility

Your go-to destination for 1000+ free online tools. Built for developers, designers, and everyone in between.

Tools

  • Converters
  • Calculators
  • Generators
  • Text Tools
  • Encoders

Resources

  • All Tools
  • About Us
  • Contact
  • Contribute
  • API Docs

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 WebUtility. Made withfor the web.

🚀 v1.0.01000+ Tools • 100% Free • No Signup Required

Tailwind Color Generator

Generate a complete 50-950 color scale from a single hex

50
#f5f9ff
100
#ebf3fe
200
#cee0fd
300
#b1cdfb
400
#76a8f9
500
#3b82f6
600
#3575dd
700
#2c62b9
800
#204887
900
#152e56
950
#0c1a31

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        custom: {
          50: '#f5f9ff',
          100: '#ebf3fe',
          200: '#cee0fd',
          300: '#b1cdfb',
          400: '#76a8f9',
          500: '#3b82f6',
          600: '#3575dd',
          700: '#2c62b9',
          800: '#204887',
          900: '#152e56',
          950: '#0c1a31',
        }
      }
    }
  }
}