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