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