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