Color Values
- HEX
- #FECACA
- RGB
- rgb(254, 202, 202)
- HSL
- hsl(0, 96%, 89%)
- OKLCH
- oklch(0.885 0.059 18)
- CMYK
- cmyk(0%, 20%, 20%, 0%)
- CSS Variable
- var(--color-red-200)
- Tailwind Class
- bg-red-200
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.45:1
On Black
14.52:1
Tailwind Usage — All Utilities
Background
bg-red-200Text
text-red-200Border
border-red-200Ring
ring-red-200Outline
outline-red-200Fill
fill-red-200Stroke
stroke-red-200From (gradient)
from-red-200Via (gradient)
via-red-200To (gradient)
to-red-200Placeholder
placeholder-red-200Caret
caret-red-200Accent
accent-red-200Decoration
decoration-red-200Shadow Color
shadow-red-200Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'red-200': '#fecaca',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #FECACA;
/* RGB */
background-color: rgb(254, 202, 202);
/* HSL */
background-color: hsl(0, 96%, 89%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.885 0.059 18);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-red-200);
/* Gradient example */
background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);OKLCH — Modern Color Space
Lightness (L)
0.885
89% perceived brightness
Chroma (C)
0.059
Color intensity / saturation
Hue (H)
18°
Angle on perceptual hue wheel
oklch(0.885 0.059 18)OKLCH is a perceptually uniform color space in CSS Color Level 4. Unlike HSL, equal steps in L produce equal perceived lightness changes — making it ideal for building accessible, harmonious design system scales.
Design Recommendations
Soft accent & border
Shade 200 of the Red palette
Recommended Uses
- ✓Focus ring outlines
- ✓Divider lines
- ✓Soft tag borders
- ✓Progress track fills
- ✓Decorative underlines
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #FECACA
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Red 200
Nearest Tailwind equivalent — #FECACA
Frequently Asked Questions
- What is the hex code for Tailwind Red 200?
- Tailwind Red 200 has the hex code #FECACA. Its RGB value is rgb(254, 202, 202) and its HSL value is hsl(0, 96%, 89%).
- What Tailwind utility classes use Red 200?
- Use bg-red-200 for backgrounds, text-red-200 for text color, border-red-200 for borders, and ring-red-200 for focus rings. In Tailwind v4 the CSS variable var(--color-red-200) is available natively.
- Is Tailwind Red 200 WCAG accessible?
- Tailwind Red 200 achieves a 1.45:1 contrast ratio on white (Fail) and 14.52:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Red 200?
- Tailwind Red 200 in OKLCH is oklch(0.885 0.059 18) — lightness 0.885, chroma 0.059, hue 18°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Red 200 used for?
- At shade 200, Tailwind Red 200 is best described as "Soft accent & border". Recommended uses: Focus ring outlines, Divider lines, Soft tag borders.