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
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.26:1
On Black
16.67:1
Tailwind Usage — All Utilities
Background
bg-neutral-200Text
text-neutral-200Border
border-neutral-200Ring
ring-neutral-200Outline
outline-neutral-200Fill
fill-neutral-200Stroke
stroke-neutral-200From (gradient)
from-neutral-200Via (gradient)
via-neutral-200To (gradient)
to-neutral-200Placeholder
placeholder-neutral-200Caret
caret-neutral-200Accent
accent-neutral-200Decoration
decoration-neutral-200Shadow Color
shadow-neutral-200Tailwind 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)
0°
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
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #E5E5E5
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Neutral 200
Nearest Tailwind equivalent — #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.