Gainsboro (Neutral)
#D3DEDE
RGB: 211, 222, 222
Color OverviewHEX #D3DEDE

#D3DEDE Color Code Information

In the RGB color space, #D3DEDE is composed of 83% red, 87% green, and 87% blue. In the HSL color space, it has a hue of 180°, saturation of 14%, and lightness of 85%.

HEX
#D3DEDE
RGB
211, 222, 222
HSL
180°, 14%, 85%
HSV
180°, 5%, 87%
CMYK
5%, 0%, 0%, 13%
Name Match
Gainsboro
Closest Standard

Shades of #D3DEDE (Darker Variations)

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

Tints of #D3DEDE (Lighter Variations)

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

Tones of #D3DEDE (Muted Variations)

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

Color Harmonies for #D3DEDE

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

Developer Code Snippets & Tailwind CSS

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

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