Color Values
- HEX
- #FECDD3
- RGB
- rgb(254, 205, 211)
- HSL
- hsl(353, 96%, 90%)
- OKLCH
- oklch(0.892 0.056 10)
- CMYK
- cmyk(0%, 19%, 17%, 0%)
- CSS Variable
- var(--color-rose-200)
- Tailwind Class
- bg-rose-200
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.41:1
On Black
14.89:1
Tailwind Usage — All Utilities
Background
bg-rose-200Text
text-rose-200Border
border-rose-200Ring
ring-rose-200Outline
outline-rose-200Fill
fill-rose-200Stroke
stroke-rose-200From (gradient)
from-rose-200Via (gradient)
via-rose-200To (gradient)
to-rose-200Placeholder
placeholder-rose-200Caret
caret-rose-200Accent
accent-rose-200Decoration
decoration-rose-200Shadow Color
shadow-rose-200Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'rose-200': '#fecdd3',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #FECDD3;
/* RGB */
background-color: rgb(254, 205, 211);
/* HSL */
background-color: hsl(353, 96%, 90%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.892 0.056 10);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-rose-200);
/* Gradient example */
background: linear-gradient(135deg, #fecdd3 0%, #fda4af 100%);OKLCH — Modern Color Space
Lightness (L)
0.892
89% perceived brightness
Chroma (C)
0.056
Color intensity / saturation
Hue (H)
10°
Angle on perceptual hue wheel
oklch(0.892 0.056 10)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 Rose 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 — #FECDD3
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Rose 200
Nearest Tailwind equivalent — #FECDD3
Frequently Asked Questions
- What is the hex code for Tailwind Rose 200?
- Tailwind Rose 200 has the hex code #FECDD3. Its RGB value is rgb(254, 205, 211) and its HSL value is hsl(353, 96%, 90%).
- What Tailwind utility classes use Rose 200?
- Use bg-rose-200 for backgrounds, text-rose-200 for text color, border-rose-200 for borders, and ring-rose-200 for focus rings. In Tailwind v4 the CSS variable var(--color-rose-200) is available natively.
- Is Tailwind Rose 200 WCAG accessible?
- Tailwind Rose 200 achieves a 1.41:1 contrast ratio on white (Fail) and 14.89:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Rose 200?
- Tailwind Rose 200 in OKLCH is oklch(0.892 0.056 10) — lightness 0.892, chroma 0.056, hue 10°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Rose 200 used for?
- At shade 200, Tailwind Rose 200 is best described as "Soft accent & border". Recommended uses: Focus ring outlines, Divider lines, Soft tag borders.