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