Skip to main content

bg-pink-100

Tailwind Pink 100

#FCE7F3·Pink family·Shade 100

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

60/100

Good

Based on WCAG 2.1 contrast ratios against white and black backgrounds.

On White

1.18:1

Fail

On Black

17.86:1

AAA
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-pink-100

Text

text-pink-100

Border

border-pink-100

Ring

ring-pink-100

Outline

outline-pink-100

Fill

fill-pink-100

Stroke

stroke-pink-100

From (gradient)

from-pink-100

Via (gradient)

via-pink-100

To (gradient)

to-pink-100

Placeholder

placeholder-pink-100

Caret

caret-pink-100

Accent

accent-pink-100

Decoration

decoration-pink-100

Shadow Color

shadow-pink-100

Tailwind 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

Body text on white — insufficient contrast for normal-size text.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #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.