Color Values
- HEX
- #500724
- RGB
- rgb(80, 7, 36)
- HSL
- hsl(336, 84%, 17%)
- OKLCH
- oklch(0.284 0.105 4)
- CMYK
- cmyk(0%, 91%, 55%, 69%)
- CSS Variable
- var(--color-pink-950)
- Tailwind Class
- bg-pink-950
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
15.03:1
On Black
1.4:1
Tailwind Usage — All Utilities
Background
bg-pink-950Text
text-pink-950Border
border-pink-950Ring
ring-pink-950Outline
outline-pink-950Fill
fill-pink-950Stroke
stroke-pink-950From (gradient)
from-pink-950Via (gradient)
via-pink-950To (gradient)
to-pink-950Placeholder
placeholder-pink-950Caret
caret-pink-950Accent
accent-pink-950Decoration
decoration-pink-950Shadow Color
shadow-pink-950Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'pink-950': '#500724',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #500724;
/* RGB */
background-color: rgb(80, 7, 36);
/* HSL */
background-color: hsl(336, 84%, 17%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.284 0.105 4);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-pink-950);
/* Gradient example */
background: linear-gradient(135deg, #fdf2f8 0%, #500724 100%);OKLCH — Modern Color Space
Lightness (L)
0.284
28% perceived brightness
Chroma (C)
0.105
Color intensity / saturation
Hue (H)
4°
Angle on perceptual hue wheel
oklch(0.284 0.105 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
Ultra-dark near-black variant
Shade 950 of the Pink palette
Recommended Uses
- ✓Maximum-contrast text on white
- ✓Rich dark card backgrounds
- ✓Dark theme page backgrounds
- ✓Tinted near-black UI surfaces
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #500724
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Pink 950
Nearest Tailwind equivalent — #500724
Frequently Asked Questions
- What is the hex code for Tailwind Pink 950?
- Tailwind Pink 950 has the hex code #500724. Its RGB value is rgb(80, 7, 36) and its HSL value is hsl(336, 84%, 17%).
- What Tailwind utility classes use Pink 950?
- Use bg-pink-950 for backgrounds, text-pink-950 for text color, border-pink-950 for borders, and ring-pink-950 for focus rings. In Tailwind v4 the CSS variable var(--color-pink-950) is available natively.
- Is Tailwind Pink 950 WCAG accessible?
- Tailwind Pink 950 achieves a 15.03:1 contrast ratio on white (AAA) and 1.4:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Pink 950?
- Tailwind Pink 950 in OKLCH is oklch(0.284 0.105 4) — lightness 0.284, chroma 0.105, hue 4°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Pink 950 used for?
- At shade 950, Tailwind Pink 950 is best described as "Ultra-dark near-black variant". Recommended uses: Maximum-contrast text on white, Rich dark card backgrounds, Dark theme page backgrounds.