Color Values
- HEX
- #1E293B
- RGB
- rgb(30, 41, 59)
- HSL
- hsl(217, 33%, 17%)
- OKLCH
- oklch(0.279 0.037 260)
- CMYK
- cmyk(49%, 31%, 0%, 77%)
- CSS Variable
- var(--color-slate-800)
- Tailwind Class
- bg-slate-800
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
14.63:1
On Black
1.44:1
Tailwind Usage — All Utilities
Background
bg-slate-800Text
text-slate-800Border
border-slate-800Ring
ring-slate-800Outline
outline-slate-800Fill
fill-slate-800Stroke
stroke-slate-800From (gradient)
from-slate-800Via (gradient)
via-slate-800To (gradient)
to-slate-800Placeholder
placeholder-slate-800Caret
caret-slate-800Accent
accent-slate-800Decoration
decoration-slate-800Shadow Color
shadow-slate-800Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'slate-800': '#1e293b',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #1E293B;
/* RGB */
background-color: rgb(30, 41, 59);
/* HSL */
background-color: hsl(217, 33%, 17%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.279 0.037 260);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-slate-800);
/* Gradient example */
background: linear-gradient(135deg, #f8fafc 0%, #0f172a 100%);OKLCH — Modern Color Space
Lightness (L)
0.279
28% perceived brightness
Chroma (C)
0.037
Color intensity / saturation
Hue (H)
260°
Angle on perceptual hue wheel
oklch(0.279 0.037 260)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
Deep tone for text & UI
Shade 800 of the Slate palette
Recommended Uses
- ✓Heading text on white
- ✓Icon fills on light backgrounds
- ✓Dark sidebar fills
- ✓Strong badge colors
- ✓Section dividers
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #1E293B
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Slate 800
Nearest Tailwind equivalent — #1E293B
Frequently Asked Questions
- What is the hex code for Tailwind Slate 800?
- Tailwind Slate 800 has the hex code #1E293B. Its RGB value is rgb(30, 41, 59) and its HSL value is hsl(217, 33%, 17%).
- What Tailwind utility classes use Slate 800?
- Use bg-slate-800 for backgrounds, text-slate-800 for text color, border-slate-800 for borders, and ring-slate-800 for focus rings. In Tailwind v4 the CSS variable var(--color-slate-800) is available natively.
- Is Tailwind Slate 800 WCAG accessible?
- Tailwind Slate 800 achieves a 14.63:1 contrast ratio on white (AAA) and 1.44:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Slate 800?
- Tailwind Slate 800 in OKLCH is oklch(0.279 0.037 260) — lightness 0.279, chroma 0.037, hue 260°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Slate 800 used for?
- At shade 800, Tailwind Slate 800 is best described as "Deep tone for text & UI". Recommended uses: Heading text on white, Icon fills on light backgrounds, Dark sidebar fills.