#E0E7FF color
The swatch above shows #E0E7FF with its hex code written on it in white and in black, so you can see which of the two is legible before reading the measured ratios below.
#E0E7FF is a very light, vivid blue, closest to the CSS named color lavender (#E6E6FA).
It is also a Tailwind CSS default: indigo-100. That means you can write bg-indigo-100 or text-indigo-100 directly, with no arbitrary-value brackets and no entry in your theme config.
Color values
| HEX | #E0E7FF |
| RGB | rgb(224, 231, 255) |
| HSL | hsl(226, 100%, 94%) |
| CMYK | cmyk(12%, 9%, 0%, 0%) |
| Decimal | 14739455 |
| CSS | color: #E0E7FF; |
| Android | 0xFFE0E7FF |
| Swift | UIColor(red: 0.878, green: 0.906, blue: 1.000, alpha: 1) |
Accessibility and contrast
| White text on #E0E7FF | 1.23:1 — AA fail · AA large fail · AAA fail |
| Black text on #E0E7FF | 17.04:1 — AA pass · AA large pass · AAA pass |
| Recommended text color | black |
WCAG 2.1 asks for at least 4.5:1 for body text and 3:1 for large text (18 pt, or 14 pt bold).
Tints and shades of #E0E7FF
Each swatch keeps the hue and saturation of #E0E7FF and varies only lightness — the quickest way to build a usable scale from a single brand color.
Colors that go with #E0E7FF
Harmonies generated by rotating the hue on the color wheel while holding saturation and lightness constant.
Using #E0E7FF in code
/* CSS */
.element { color: #E0E7FF; background-color: #E0E7FF; }
.element { color: rgb(224 231 255); }
.element { color: hsl(226 100% 94%); }
/* Tailwind */
<div class="bg-indigo-100 text-black">
/* SCSS variable */
$brand: #E0E7FF;
Frequently asked questions
What color is #E0E7FF?
#E0E7FF is a very light, vivid blue. Its hue sits at 226° on the color wheel, with 100% saturation and 94% lightness.
What is #E0E7FF in RGB?
#E0E7FF converts to rgb(224, 231, 255) — 224 red, 231 green and 255 blue.
What is #E0E7FF in CMYK?
Approximately cmyk(12%, 9%, 0%, 0%). Print output depends on the ICC profile of the press and paper, so treat this as a starting point rather than an exact match.
Should text on #E0E7FF be white or black?
Black gives the better contrast ratio (17.04:1 versus 1.23:1).
What is the complementary color of #E0E7FF?
#FFF8E0 — the hue directly opposite #E0E7FF on the color wheel.