Color Values
- HEX
- #FFF1F2
- RGB
- rgb(255, 241, 242)
- HSL
- hsl(356, 100%, 97%)
- OKLCH
- oklch(0.969 0.015 13)
- CMYK
- cmyk(0%, 5%, 5%, 0%)
- CSS Variable
- var(--color-rose-50)
- Tailwind Class
- bg-rose-50
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.1:1
On Black
19.12:1
Tailwind Usage — All Utilities
Background
bg-rose-50Text
text-rose-50Border
border-rose-50Ring
ring-rose-50Outline
outline-rose-50Fill
fill-rose-50Stroke
stroke-rose-50From (gradient)
from-rose-50Via (gradient)
via-rose-50To (gradient)
to-rose-50Placeholder
placeholder-rose-50Caret
caret-rose-50Accent
accent-rose-50Decoration
decoration-rose-50Shadow Color
shadow-rose-50Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'rose-50': '#fff1f2',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #FFF1F2;
/* RGB */
background-color: rgb(255, 241, 242);
/* HSL */
background-color: hsl(356, 100%, 97%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.969 0.015 13);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-rose-50);
/* Gradient example */
background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);OKLCH — Modern Color Space
Lightness (L)
0.969
97% perceived brightness
Chroma (C)
0.015
Color intensity / saturation
Hue (H)
13°
Angle on perceptual hue wheel
oklch(0.969 0.015 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
Ultra-light background tint
Shade 50 of the Rose palette
Recommended Uses
- ✓Page backgrounds
- ✓Subtle section fills
- ✓Notification banners
- ✓Hover state backgrounds
- ✓Table row alternates
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #FFF1F2
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Rose 50
Nearest Tailwind equivalent — #FFF1F2
Frequently Asked Questions
- What is the hex code for Tailwind Rose 50?
- Tailwind Rose 50 has the hex code #FFF1F2. Its RGB value is rgb(255, 241, 242) and its HSL value is hsl(356, 100%, 97%).
- What Tailwind utility classes use Rose 50?
- Use bg-rose-50 for backgrounds, text-rose-50 for text color, border-rose-50 for borders, and ring-rose-50 for focus rings. In Tailwind v4 the CSS variable var(--color-rose-50) is available natively.
- Is Tailwind Rose 50 WCAG accessible?
- Tailwind Rose 50 achieves a 1.1:1 contrast ratio on white (Fail) and 19.12:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Rose 50?
- Tailwind Rose 50 in OKLCH is oklch(0.969 0.015 13) — lightness 0.969, chroma 0.015, hue 13°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Rose 50 used for?
- At shade 50, Tailwind Rose 50 is best described as "Ultra-light background tint". Recommended uses: Page backgrounds, Subtle section fills, Notification banners.