Color Values
- HEX
- #FCE7F3
- RGB
- rgb(252, 231, 243)
- HSL
- hsl(326, 78%, 95%)
- OKLCH
- oklch(0.948 0.028 342)
- CMYK
- cmyk(0%, 8%, 4%, 1%)
- CSS Variable
- var(--color-pink-100)
- Tailwind Class
- bg-pink-100
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.18:1
On Black
17.86:1
Tailwind Usage — All Utilities
Background
bg-pink-100Text
text-pink-100Border
border-pink-100Ring
ring-pink-100Outline
outline-pink-100Fill
fill-pink-100Stroke
stroke-pink-100From (gradient)
from-pink-100Via (gradient)
via-pink-100To (gradient)
to-pink-100Placeholder
placeholder-pink-100Caret
caret-pink-100Accent
accent-pink-100Decoration
decoration-pink-100Shadow Color
shadow-pink-100Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'pink-100': '#fce7f3',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #FCE7F3;
/* RGB */
background-color: rgb(252, 231, 243);
/* HSL */
background-color: hsl(326, 78%, 95%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.948 0.028 342);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-pink-100);
/* Gradient example */
background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);OKLCH — Modern Color Space
Lightness (L)
0.948
95% perceived brightness
Chroma (C)
0.028
Color intensity / saturation
Hue (H)
342°
Angle on perceptual hue wheel
oklch(0.948 0.028 342)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
Light surface & background
Shade 100 of the Pink palette
Recommended Uses
- ✓Card backgrounds
- ✓Sidebar fills
- ✓Input field backgrounds
- ✓Chip & badge backgrounds
- ✓Skeleton loaders
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #FCE7F3
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Pink 100
Nearest Tailwind equivalent — #FCE7F3
Frequently Asked Questions
- What is the hex code for Tailwind Pink 100?
- Tailwind Pink 100 has the hex code #FCE7F3. Its RGB value is rgb(252, 231, 243) and its HSL value is hsl(326, 78%, 95%).
- What Tailwind utility classes use Pink 100?
- Use bg-pink-100 for backgrounds, text-pink-100 for text color, border-pink-100 for borders, and ring-pink-100 for focus rings. In Tailwind v4 the CSS variable var(--color-pink-100) is available natively.
- Is Tailwind Pink 100 WCAG accessible?
- Tailwind Pink 100 achieves a 1.18:1 contrast ratio on white (Fail) and 17.86:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Pink 100?
- Tailwind Pink 100 in OKLCH is oklch(0.948 0.028 342) — lightness 0.948, chroma 0.028, hue 342°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Pink 100 used for?
- At shade 100, Tailwind Pink 100 is best described as "Light surface & background". Recommended uses: Card backgrounds, Sidebar fills, Input field backgrounds.