Back to colors
Tailwind Red color shades
Errors, destructive actions, urgent alerts, and validation messages. This guide lists every red shade from 50 to 950, recommended foreground contrast, practical pairings, and copy-ready Tailwind configuration code.
Shade scale
50#fef2f2dark text
100#fee2e2dark text
200#fecacadark text
300#fca5a5dark text
400#f87171dark text
500#ef4444light text
600#dc2626light text
700#b91c1clight text
800#991b1blight text
900#7f1d1dlight text
950#450a0alight 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: {
red: {
50: "#fef2f2",
100: "#fee2e2",
200: "#fecaca",
300: "#fca5a5",
400: "#f87171",
500: "#ef4444",
600: "#dc2626",
700: "#b91c1c",
800: "#991b1b",
900: "#7f1d1d",
950: "#450a0a",
},
},
},
},
};Usage guidance
Use Red 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.