Color Values
- HEX
- #3730A3
- RGB
- rgb(55, 48, 163)
- HSL
- hsl(244, 55%, 41%)
- OKLCH
- oklch(0.398 0.177 277)
- CMYK
- cmyk(66%, 71%, 0%, 36%)
- CSS Variable
- var(--color-indigo-800)
- Tailwind Class
- bg-indigo-800
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
9.93:1
On Black
2.11:1
Tailwind Usage — All Utilities
Background
bg-indigo-800Text
text-indigo-800Border
border-indigo-800Ring
ring-indigo-800Outline
outline-indigo-800Fill
fill-indigo-800Stroke
stroke-indigo-800From (gradient)
from-indigo-800Via (gradient)
via-indigo-800To (gradient)
to-indigo-800Placeholder
placeholder-indigo-800Caret
caret-indigo-800Accent
accent-indigo-800Decoration
decoration-indigo-800Shadow Color
shadow-indigo-800Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'indigo-800': '#3730a3',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #3730A3;
/* RGB */
background-color: rgb(55, 48, 163);
/* HSL */
background-color: hsl(244, 55%, 41%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.398 0.177 277);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-indigo-800);
/* Gradient example */
background: linear-gradient(135deg, #eef2ff 0%, #312e81 100%);OKLCH — Modern Color Space
Lightness (L)
0.398
40% perceived brightness
Chroma (C)
0.177
Color intensity / saturation
Hue (H)
277°
Angle on perceptual hue wheel
oklch(0.398 0.177 277)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
Deep tone for text & UI
Shade 800 of the Indigo palette
Recommended Uses
- ✓Heading text on white
- ✓Icon fills on light backgrounds
- ✓Dark sidebar fills
- ✓Strong badge colors
- ✓Section dividers
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #3730A3
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Indigo 800
Nearest Tailwind equivalent — #3730A3
Frequently Asked Questions
- What is the hex code for Tailwind Indigo 800?
- Tailwind Indigo 800 has the hex code #3730A3. Its RGB value is rgb(55, 48, 163) and its HSL value is hsl(244, 55%, 41%).
- What Tailwind utility classes use Indigo 800?
- Use bg-indigo-800 for backgrounds, text-indigo-800 for text color, border-indigo-800 for borders, and ring-indigo-800 for focus rings. In Tailwind v4 the CSS variable var(--color-indigo-800) is available natively.
- Is Tailwind Indigo 800 WCAG accessible?
- Tailwind Indigo 800 achieves a 9.93:1 contrast ratio on white (AAA) and 2.11:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Indigo 800?
- Tailwind Indigo 800 in OKLCH is oklch(0.398 0.177 277) — lightness 0.398, chroma 0.177, hue 277°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Indigo 800 used for?
- At shade 800, Tailwind Indigo 800 is best described as "Deep tone for text & UI". Recommended uses: Heading text on white, Icon fills on light backgrounds, Dark sidebar fills.