Gainsboro (Neutral)
#DAD4DA
RGB: 218, 212, 218
Color OverviewHEX #DAD4DA

#DAD4DA Color Code Information

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

HEX
#DAD4DA
RGB
218, 212, 218
HSL
300°, 7%, 84%
HSV
300°, 3%, 85%
CMYK
0%, 3%, 0%, 15%
Name Match
Gainsboro
Closest Standard

Shades of #DAD4DA (Darker Variations)

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

Tints of #DAD4DA (Lighter Variations)

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

Tones of #DAD4DA (Muted Variations)

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

Color Harmonies for #DAD4DA

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

Developer Code Snippets & Tailwind CSS

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

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