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