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