Back to colors

Tailwind Pink color shades

Creative brands, user delight, product accents, and secondary CTA treatments. This guide lists every pink shade from 50 to 950, recommended foreground contrast, practical pairings, and copy-ready Tailwind configuration code.

Shade scale

50#fdf2f8dark text
100#fce7f3dark text
200#fbcfe8dark text
300#f9a8d4dark text
400#f472b6dark text
500#ec4899light text
600#db2777light text
700#be185dlight text
800#9d174dlight text
900#831843light text
950#500724light text

Copy-ready Tailwind config

Use a complete class-safe object in your config or token layer. Keeping the full class names and shade keys visible helps build tools and search engines understand the generated code.

export default {
  theme: {
    extend: {
      colors: {
        pink: {
          50: "#fdf2f8",
          100: "#fce7f3",
          200: "#fbcfe8",
          300: "#f9a8d4",
          400: "#f472b6",
          500: "#ec4899",
          600: "#db2777",
          700: "#be185d",
          800: "#9d174d",
          900: "#831843",
          950: "#500724",
        },
      },
    },
  },
};

Usage guidance

Use Pink 50-100 for subtle surfaces, 200-300 for tinted backgrounds, 400-600 for visible accents, and 700-950 for strong text, deep surfaces, or dark-mode emphasis.

For accessibility, test real text sizes and weights before shipping. A shade that passes for large labels may still be weak for compact body copy, disabled states, or small badges.