Skip to main content

bg-neutral-200

Tailwind Neutral 200

#E5E5E5·Neutral family·Shade 200

Color Values

HEX
#E5E5E5
RGB
rgb(229, 229, 229)
HSL
hsl(0, 0%, 90%)
OKLCH
oklch(0.922 0.000 0)
CMYK
cmyk(0%, 0%, 0%, 10%)
CSS Variable
var(--color-neutral-200)
Tailwind Class
bg-neutral-200

Accessibility Score

60/100

Good

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

On White

1.26:1

Fail

On Black

16.67:1

AAA
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-neutral-200

Text

text-neutral-200

Border

border-neutral-200

Ring

ring-neutral-200

Outline

outline-neutral-200

Fill

fill-neutral-200

Stroke

stroke-neutral-200

From (gradient)

from-neutral-200

Via (gradient)

via-neutral-200

To (gradient)

to-neutral-200

Placeholder

placeholder-neutral-200

Caret

caret-neutral-200

Accent

accent-neutral-200

Decoration

decoration-neutral-200

Shadow Color

shadow-neutral-200

Tailwind v3 Config (extend custom color)

// tailwind.config.js module.exports = { theme: { extend: { colors: { 'neutral-200': '#e5e5e5', }, }, }, };

CSS Equivalent

/* Hex */
background-color: #E5E5E5;

/* RGB */
background-color: rgb(229, 229, 229);

/* HSL */
background-color: hsl(0, 0%, 90%);

/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.922 0.000 0);

/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-neutral-200);

/* Gradient example */
background: linear-gradient(135deg, #e5e5e5 0%, #d4d4d4 100%);

OKLCH — Modern Color Space

Lightness (L)

0.922

92% perceived brightness

Chroma (C)

0.000

Color intensity / saturation

Hue (H)

Angle on perceptual hue wheel

oklch(0.922 0.000 0)

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 Neutral 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 — #E5E5E5

Frequently Asked Questions

What is the hex code for Tailwind Neutral 200?
Tailwind Neutral 200 has the hex code #E5E5E5. Its RGB value is rgb(229, 229, 229) and its HSL value is hsl(0, 0%, 90%).
What Tailwind utility classes use Neutral 200?
Use bg-neutral-200 for backgrounds, text-neutral-200 for text color, border-neutral-200 for borders, and ring-neutral-200 for focus rings. In Tailwind v4 the CSS variable var(--color-neutral-200) is available natively.
Is Tailwind Neutral 200 WCAG accessible?
Tailwind Neutral 200 achieves a 1.26:1 contrast ratio on white (Fail) and 16.67:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
What is the OKLCH value for Tailwind Neutral 200?
Tailwind Neutral 200 in OKLCH is oklch(0.922 0.000 0) — lightness 0.922, chroma 0.000, hue 0°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
What is Tailwind Neutral 200 used for?
At shade 200, Tailwind Neutral 200 is best described as "Soft accent & border". Recommended uses: Focus ring outlines, Divider lines, Soft tag borders.