Skip to main content

bg-rose-100

Tailwind Rose 100

#FFE4E6·Rose family·Shade 100

Color Values

HEX
#FFE4E6
RGB
rgb(255, 228, 230)
HSL
hsl(356, 100%, 95%)
OKLCH
oklch(0.941 0.030 13)
CMYK
cmyk(0%, 11%, 10%, 0%)
CSS Variable
var(--color-rose-100)
Tailwind Class
bg-rose-100

Accessibility Score

60/100

Good

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

On White

1.2:1

Fail

On Black

17.49:1

AAA
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-rose-100

Text

text-rose-100

Border

border-rose-100

Ring

ring-rose-100

Outline

outline-rose-100

Fill

fill-rose-100

Stroke

stroke-rose-100

From (gradient)

from-rose-100

Via (gradient)

via-rose-100

To (gradient)

to-rose-100

Placeholder

placeholder-rose-100

Caret

caret-rose-100

Accent

accent-rose-100

Decoration

decoration-rose-100

Shadow Color

shadow-rose-100

Tailwind v3 Config (extend custom color)

// tailwind.config.js module.exports = { theme: { extend: { colors: { 'rose-100': '#ffe4e6', }, }, }, };

CSS Equivalent

/* Hex */
background-color: #FFE4E6;

/* RGB */
background-color: rgb(255, 228, 230);

/* HSL */
background-color: hsl(356, 100%, 95%);

/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.941 0.030 13);

/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-rose-100);

/* Gradient example */
background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%);

OKLCH — Modern Color Space

Lightness (L)

0.941

94% perceived brightness

Chroma (C)

0.030

Color intensity / saturation

Hue (H)

13°

Angle on perceptual hue wheel

oklch(0.941 0.030 13)

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 Rose 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 — #FFE4E6

Frequently Asked Questions

What is the hex code for Tailwind Rose 100?
Tailwind Rose 100 has the hex code #FFE4E6. Its RGB value is rgb(255, 228, 230) and its HSL value is hsl(356, 100%, 95%).
What Tailwind utility classes use Rose 100?
Use bg-rose-100 for backgrounds, text-rose-100 for text color, border-rose-100 for borders, and ring-rose-100 for focus rings. In Tailwind v4 the CSS variable var(--color-rose-100) is available natively.
Is Tailwind Rose 100 WCAG accessible?
Tailwind Rose 100 achieves a 1.2:1 contrast ratio on white (Fail) and 17.49:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
What is the OKLCH value for Tailwind Rose 100?
Tailwind Rose 100 in OKLCH is oklch(0.941 0.030 13) — lightness 0.941, chroma 0.030, hue 13°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
What is Tailwind Rose 100 used for?
At shade 100, Tailwind Rose 100 is best described as "Light surface & background". Recommended uses: Card backgrounds, Sidebar fills, Input field backgrounds.