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