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