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