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