Use SVG Shape Generator

Enter your data below to use the SVG Shape Generator

📌 Try these examples:
RESULT

Last updated

Tailwind CSS Color System

Tailwind CSS includes a comprehensive color palette with 22 color families, each with 11 shades from 50 (lightest) to 950 (darkest). The palette is designed to be perceptually consistent — each step represents a similar visual difference in lightness. Colors are referenced in utility classes like bg-blue-500, text-red-700, and border-green-300.

Color Scale Reference

ShadeTypical Use
50Very light backgrounds, hover states on white
100Light backgrounds, badges
200Borders on light backgrounds
300Disabled states, placeholder text
400Icons, secondary text
500Primary brand color, buttons
600Hover state for 500
700Active/pressed state
800Dark text on light backgrounds
900Very dark text, headings
950Near-black, dark mode backgrounds

Custom Colors in Tailwind Config

JavaScript
// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        brand: {
          50:  '#eff6ff',
          100: '#dbeafe',
          500: '#3b82f6',
          600: '#2563eb',
          700: '#1d4ed8',
          900: '#1e3a8a',
        },
        // Using CSS variables for dynamic theming
        primary: 'rgb(var(--color-primary) / <alpha-value>)',
      }
    }
  }
};

Frequently Asked Questions

Simply enter your data, click the process button, and get instant results. All processing happens in your browser for maximum privacy and security.