Gainsboro (Neutral)
#DDDFDD
RGB: 221, 223, 221
Color OverviewHEX #DDDFDD

#DDDFDD Color Code Information

In the RGB color space, #DDDFDD is composed of 87% red, 87% green, and 87% blue. In the HSL color space, it has a hue of 120°, saturation of 3%, and lightness of 87%.

HEX
#DDDFDD
RGB
221, 223, 221
HSL
120°, 3%, 87%
HSV
120°, 1%, 87%
CMYK
1%, 0%, 1%, 13%
Name Match
Gainsboro
Closest Standard

Shades of #DDDFDD (Darker Variations)

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

Tints of #DDDFDD (Lighter Variations)

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

Tones of #DDDFDD (Muted Variations)

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

Color Harmonies for #DDDFDD

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

Developer Code Snippets & Tailwind CSS

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

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