Gainsboro (Neutral)
#DAE3EC
RGB: 218, 227, 236
Color OverviewHEX #DAE3EC

#DAE3EC Color Code Information

In the RGB color space, #DAE3EC is composed of 85% red, 89% green, and 93% blue. In the HSL color space, it has a hue of 210°, saturation of 32%, and lightness of 89%.

HEX
#DAE3EC
RGB
218, 227, 236
HSL
210°, 32%, 89%
HSV
210°, 8%, 93%
CMYK
8%, 4%, 0%, 7%
Name Match
Gainsboro
Closest Standard

Shades of #DAE3EC (Darker Variations)

Shades are created by progressively mixing the base color with black.

Tints of #DAE3EC (Lighter Variations)

Tints are created by progressively mixing the base color with pure white.

Tones of #DAE3EC (Muted Variations)

Tones are created by mixing the base color with true neutral gray.

Color Harmonies for #DAE3EC

Calculated color schemes based on classic color wheel angles for graphic and web design.

WCAG Accessibility Contrast Ratios

Verification against Web Content Accessibility Guidelines (WCAG 2.1) standards for web text readability.

Sample Text on #DAE3EC Background
Contrast Ratio against Pure White (#FFFFFF):1.3 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #DAE3EC Background
Contrast Ratio against Pure Black (#000000):16.18 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

CSS Variables & Declarations
:root {
  --color-brand: #DAE3EC;
}

.element {
  color: #DAE3EC;
  background-color: #DAE3EC;
  border-color: #DAE3EC;
}
Tailwind CSS v4 Utility Classes
<!-- Tailwind Arbitrary Values -->
<div className="bg-[#DAE3EC] text-[#DAE3EC] border-[#DAE3EC]">
  Content styled with #DAE3EC
</div>