Back to colors

Tailwind Purple color shades

Brand moments, creative components, feature highlights, and rich UI accents. This guide lists every purple shade from 50 to 950, recommended foreground contrast, practical pairings, and copy-ready Tailwind configuration code.

Shade scale

50#faf5ffdark text
100#f3e8ffdark text
200#e9d5ffdark text
300#d8b4fedark text
400#c084fcdark text
500#a855f7light text
600#9333ealight text
700#7e22celight text
800#6b21a8light text
900#581c87light text
950#3b0764light 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: {
        purple: {
          50: "#faf5ff",
          100: "#f3e8ff",
          200: "#e9d5ff",
          300: "#d8b4fe",
          400: "#c084fc",
          500: "#a855f7",
          600: "#9333ea",
          700: "#7e22ce",
          800: "#6b21a8",
          900: "#581c87",
          950: "#3b0764",
        },
      },
    },
  },
};

Usage guidance

Use Purple 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.