Color Values
- HEX
- #E11D48
- RGB
- rgb(225, 29, 72)
- HSL
- hsl(347, 77%, 50%)
- OKLCH
- oklch(0.586 0.222 18)
- CMYK
- cmyk(0%, 87%, 68%, 12%)
- CSS Variable
- var(--color-rose-600)
- Tailwind Class
- bg-rose-600
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
4.7:1
On Black
4.47:1
Tailwind Usage — All Utilities
Background
bg-rose-600Text
text-rose-600Border
border-rose-600Ring
ring-rose-600Outline
outline-rose-600Fill
fill-rose-600Stroke
stroke-rose-600From (gradient)
from-rose-600Via (gradient)
via-rose-600To (gradient)
to-rose-600Placeholder
placeholder-rose-600Caret
caret-rose-600Accent
accent-rose-600Decoration
decoration-rose-600Shadow Color
shadow-rose-600Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'rose-600': '#e11d48',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #E11D48;
/* RGB */
background-color: rgb(225, 29, 72);
/* HSL */
background-color: hsl(347, 77%, 50%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.586 0.222 18);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-rose-600);
/* Gradient example */
background: linear-gradient(135deg, #fff1f2 0%, #be123c 100%);OKLCH — Modern Color Space
Lightness (L)
0.586
59% perceived brightness
Chroma (C)
0.222
Color intensity / saturation
Hue (H)
18°
Angle on perceptual hue wheel
oklch(0.586 0.222 18)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
Accessible primary action
Shade 600 of the Rose palette
Recommended Uses
- ✓Primary buttons on white (passes AA)
- ✓Active state fills
- ✓Bold text links
- ✓Form borders on focus
- ✓Strong icon fills
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #E11D48
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Rose 600
Nearest Tailwind equivalent — #E11D48
Frequently Asked Questions
- What is the hex code for Tailwind Rose 600?
- Tailwind Rose 600 has the hex code #E11D48. Its RGB value is rgb(225, 29, 72) and its HSL value is hsl(347, 77%, 50%).
- What Tailwind utility classes use Rose 600?
- Use bg-rose-600 for backgrounds, text-rose-600 for text color, border-rose-600 for borders, and ring-rose-600 for focus rings. In Tailwind v4 the CSS variable var(--color-rose-600) is available natively.
- Is Tailwind Rose 600 WCAG accessible?
- Tailwind Rose 600 achieves a 4.7:1 contrast ratio on white (AA) and 4.47:1 on black (AA Large). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Rose 600?
- Tailwind Rose 600 in OKLCH is oklch(0.586 0.222 18) — lightness 0.586, chroma 0.222, hue 18°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Rose 600 used for?
- At shade 600, Tailwind Rose 600 is best described as "Accessible primary action". Recommended uses: Primary buttons on white (passes AA), Active state fills, Bold text links.