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