Color Values
- HEX
- #71717A
- RGB
- rgb(113, 113, 122)
- HSL
- hsl(240, 4%, 46%)
- OKLCH
- oklch(0.552 0.014 286)
- CMYK
- cmyk(7%, 7%, 0%, 52%)
- CSS Variable
- var(--color-zinc-500)
- Tailwind Class
- bg-zinc-500
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
4.83:1
On Black
4.35:1
Tailwind Usage — All Utilities
Background
bg-zinc-500Text
text-zinc-500Border
border-zinc-500Ring
ring-zinc-500Outline
outline-zinc-500Fill
fill-zinc-500Stroke
stroke-zinc-500From (gradient)
from-zinc-500Via (gradient)
via-zinc-500To (gradient)
to-zinc-500Placeholder
placeholder-zinc-500Caret
caret-zinc-500Accent
accent-zinc-500Decoration
decoration-zinc-500Shadow Color
shadow-zinc-500Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'zinc-500': '#71717a',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #71717A;
/* RGB */
background-color: rgb(113, 113, 122);
/* HSL */
background-color: hsl(240, 4%, 46%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.552 0.014 286);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-zinc-500);
/* Gradient example */
background: linear-gradient(135deg, #fafafa 0%, #52525b 100%);OKLCH — Modern Color Space
Lightness (L)
0.552
55% perceived brightness
Chroma (C)
0.014
Color intensity / saturation
Hue (H)
286°
Angle on perceptual hue wheel
oklch(0.552 0.014 286)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
Primary brand color
Shade 500 of the Zinc palette
Recommended Uses
- ✓CTA buttons
- ✓Active navigation links
- ✓Primary brand accents
- ✓Interactive element fills
- ✓Highlighted badges
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #71717A
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Zinc 500
Nearest Tailwind equivalent — #71717A
Frequently Asked Questions
- What is the hex code for Tailwind Zinc 500?
- Tailwind Zinc 500 has the hex code #71717A. Its RGB value is rgb(113, 113, 122) and its HSL value is hsl(240, 4%, 46%).
- What Tailwind utility classes use Zinc 500?
- Use bg-zinc-500 for backgrounds, text-zinc-500 for text color, border-zinc-500 for borders, and ring-zinc-500 for focus rings. In Tailwind v4 the CSS variable var(--color-zinc-500) is available natively.
- Is Tailwind Zinc 500 WCAG accessible?
- Tailwind Zinc 500 achieves a 4.83:1 contrast ratio on white (AA) and 4.35:1 on black (AA Large). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Zinc 500?
- Tailwind Zinc 500 in OKLCH is oklch(0.552 0.014 286) — lightness 0.552, chroma 0.014, hue 286°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Zinc 500 used for?
- At shade 500, Tailwind Zinc 500 is best described as "Primary brand color". Recommended uses: CTA buttons, Active navigation links, Primary brand accents.