Gainsboro (Neutral)
#DADEDB
RGB: 218, 222, 219
Color OverviewHEX #DADEDB

#DADEDB Color Code Information

In the RGB color space, #DADEDB is composed of 85% red, 87% green, and 86% blue. In the HSL color space, it has a hue of 135°, saturation of 6%, and lightness of 86%.

HEX
#DADEDB
RGB
218, 222, 219
HSL
135°, 6%, 86%
HSV
135°, 2%, 87%
CMYK
2%, 0%, 1%, 13%
Name Match
Gainsboro
Closest Standard

Shades of #DADEDB (Darker Variations)

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

Tints of #DADEDB (Lighter Variations)

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

Tones of #DADEDB (Muted Variations)

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

Color Harmonies for #DADEDB

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 #DADEDB Background
Contrast Ratio against Pure White (#FFFFFF):1.36 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #DADEDB Background
Contrast Ratio against Pure Black (#000000):15.45 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

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

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