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
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.2:1
On Black
17.49:1
Tailwind Usage — All Utilities
Background
bg-rose-100Text
text-rose-100Border
border-rose-100Ring
ring-rose-100Outline
outline-rose-100Fill
fill-rose-100Stroke
stroke-rose-100From (gradient)
from-rose-100Via (gradient)
via-rose-100To (gradient)
to-rose-100Placeholder
placeholder-rose-100Caret
caret-rose-100Accent
accent-rose-100Decoration
decoration-rose-100Shadow Color
shadow-rose-100Tailwind 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
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #FFE4E6
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Rose 100
Nearest Tailwind equivalent — #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.