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