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