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

#DDDFDC Color Code Information

In the RGB color space, #DDDFDC is composed of 87% red, 87% green, and 86% blue. In the HSL color space, it has a hue of 100°, saturation of 4%, and lightness of 87%.

HEX
#DDDFDC
RGB
221, 223, 220
HSL
100°, 4%, 87%
HSV
100°, 1%, 87%
CMYK
1%, 0%, 1%, 13%
Name Match
Gainsboro
Closest Standard

Shades of #DDDFDC (Darker Variations)

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

Tints of #DDDFDC (Lighter Variations)

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

Tones of #DDDFDC (Muted Variations)

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

Color Harmonies for #DDDFDC

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

Developer Code Snippets & Tailwind CSS

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

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