Skip to main content

bg-zinc-200

Tailwind Zinc 200

#E4E4E7·Zinc family·Shade 200

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

60/100

Good

Based on WCAG 2.1 contrast ratios against white and black backgrounds.

On White

1.27:1

Fail

On Black

16.55:1

AAA
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-zinc-200

Text

text-zinc-200

Border

border-zinc-200

Ring

ring-zinc-200

Outline

outline-zinc-200

Fill

fill-zinc-200

Stroke

stroke-zinc-200

From (gradient)

from-zinc-200

Via (gradient)

via-zinc-200

To (gradient)

to-zinc-200

Placeholder

placeholder-zinc-200

Caret

caret-zinc-200

Accent

accent-zinc-200

Decoration

decoration-zinc-200

Shadow Color

shadow-zinc-200

Tailwind 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

Small body text — borderline contrast, fails WCAG AA at small sizes.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #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.