Skip to main content

bg-pink-700

Tailwind Pink 700

#BE185D·Pink family·Shade 700

Color Values

HEX
#BE185D
RGB
rgb(190, 24, 93)
HSL
hsl(335, 78%, 42%)
OKLCH
oklch(0.525 0.199 4)
CMYK
cmyk(0%, 87%, 51%, 25%)
CSS Variable
var(--color-pink-700)
Tailwind Class
bg-pink-700

Accessibility Score

60/100

Good

Based on WCAG 2.1 contrast ratios against white and black backgrounds.

On White

6.04:1

AA

On Black

3.48:1

AA Large
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-pink-700

Text

text-pink-700

Border

border-pink-700

Ring

ring-pink-700

Outline

outline-pink-700

Fill

fill-pink-700

Stroke

stroke-pink-700

From (gradient)

from-pink-700

Via (gradient)

via-pink-700

To (gradient)

to-pink-700

Placeholder

placeholder-pink-700

Caret

caret-pink-700

Accent

accent-pink-700

Decoration

decoration-pink-700

Shadow Color

shadow-pink-700

Tailwind v3 Config (extend custom color)

// tailwind.config.js module.exports = { theme: { extend: { colors: { 'pink-700': '#be185d', }, }, }, };

CSS Equivalent

/* Hex */
background-color: #BE185D;

/* RGB */
background-color: rgb(190, 24, 93);

/* HSL */
background-color: hsl(335, 78%, 42%);

/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.525 0.199 4);

/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-pink-700);

/* Gradient example */
background: linear-gradient(135deg, #fdf2f8 0%, #9d174d 100%);

OKLCH — Modern Color Space

Lightness (L)

0.525

53% perceived brightness

Chroma (C)

0.199

Color intensity / saturation

Hue (H)

Angle on perceptual hue wheel

oklch(0.525 0.199 4)

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 Pink palette

Recommended Uses

  • Pressed/active button states
  • Text links on white
  • Dark-mode primary buttons
  • Table headers
  • Strong UI accents

Avoid

Text on black — contrast is too low for dark mode text.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #BE185D

Frequently Asked Questions

What is the hex code for Tailwind Pink 700?
Tailwind Pink 700 has the hex code #BE185D. Its RGB value is rgb(190, 24, 93) and its HSL value is hsl(335, 78%, 42%).
What Tailwind utility classes use Pink 700?
Use bg-pink-700 for backgrounds, text-pink-700 for text color, border-pink-700 for borders, and ring-pink-700 for focus rings. In Tailwind v4 the CSS variable var(--color-pink-700) is available natively.
Is Tailwind Pink 700 WCAG accessible?
Tailwind Pink 700 achieves a 6.04:1 contrast ratio on white (AA) and 3.48:1 on black (AA Large). Its overall accessibility score is 60/100 (Good).
What is the OKLCH value for Tailwind Pink 700?
Tailwind Pink 700 in OKLCH is oklch(0.525 0.199 4) — lightness 0.525, chroma 0.199, hue 4°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
What is Tailwind Pink 700 used for?
At shade 700, Tailwind Pink 700 is best described as "Dark accent & pressed state". Recommended uses: Pressed/active button states, Text links on white, Dark-mode primary buttons.