Color Values
- HEX
- #E4E4E7
- RGB
- rgb(228, 228, 231)
- HSL
- hsl(240, 6%, 90%)
- OKLCH
- oklch(0.920 0.004 287)
- CMYK
- cmyk(1%, 1%, 0%, 9%)
- CSS Variable
- var(--color-zinc-200)
- Tailwind Class
- bg-zinc-200
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.27:1
On Black
16.55:1
Tailwind Usage — All Utilities
Background
bg-zinc-200Text
text-zinc-200Border
border-zinc-200Ring
ring-zinc-200Outline
outline-zinc-200Fill
fill-zinc-200Stroke
stroke-zinc-200From (gradient)
from-zinc-200Via (gradient)
via-zinc-200To (gradient)
to-zinc-200Placeholder
placeholder-zinc-200Caret
caret-zinc-200Accent
accent-zinc-200Decoration
decoration-zinc-200Shadow Color
shadow-zinc-200Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'zinc-200': '#e4e4e7',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #E4E4E7;
/* RGB */
background-color: rgb(228, 228, 231);
/* HSL */
background-color: hsl(240, 6%, 90%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.920 0.004 287);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-zinc-200);
/* Gradient example */
background: linear-gradient(135deg, #e4e4e7 0%, #d4d4d8 100%);OKLCH — Modern Color Space
Lightness (L)
0.920
92% perceived brightness
Chroma (C)
0.004
Color intensity / saturation
Hue (H)
287°
Angle on perceptual hue wheel
oklch(0.920 0.004 287)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
Soft accent & border
Shade 200 of the Zinc palette
Recommended Uses
- ✓Focus ring outlines
- ✓Divider lines
- ✓Soft tag borders
- ✓Progress track fills
- ✓Decorative underlines
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #E4E4E7
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Zinc 200
Nearest Tailwind equivalent — #E4E4E7
Frequently Asked Questions
- What is the hex code for Tailwind Zinc 200?
- Tailwind Zinc 200 has the hex code #E4E4E7. Its RGB value is rgb(228, 228, 231) and its HSL value is hsl(240, 6%, 90%).
- What Tailwind utility classes use Zinc 200?
- Use bg-zinc-200 for backgrounds, text-zinc-200 for text color, border-zinc-200 for borders, and ring-zinc-200 for focus rings. In Tailwind v4 the CSS variable var(--color-zinc-200) is available natively.
- Is Tailwind Zinc 200 WCAG accessible?
- Tailwind Zinc 200 achieves a 1.27:1 contrast ratio on white (Fail) and 16.55:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Zinc 200?
- Tailwind Zinc 200 in OKLCH is oklch(0.920 0.004 287) — lightness 0.920, chroma 0.004, hue 287°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Zinc 200 used for?
- At shade 200, Tailwind Zinc 200 is best described as "Soft accent & border". Recommended uses: Focus ring outlines, Divider lines, Soft tag borders.