Gainsboro (Neutral)
#D3DADA
RGB: 211, 218, 218
Color OverviewHEX #D3DADA

#D3DADA Color Code Information

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

HEX
#D3DADA
RGB
211, 218, 218
HSL
180°, 9%, 84%
HSV
180°, 3%, 85%
CMYK
3%, 0%, 0%, 15%
Name Match
Gainsboro
Closest Standard

Shades of #D3DADA (Darker Variations)

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

Tints of #D3DADA (Lighter Variations)

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

Tones of #D3DADA (Muted Variations)

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

Color Harmonies for #D3DADA

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

Developer Code Snippets & Tailwind CSS

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

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