Gainsboro (Neutral)
#D2F1DF
RGB: 210, 241, 223
Color OverviewHEX #D2F1DF

#D2F1DF Color Code Information

In the RGB color space, #D2F1DF is composed of 82% red, 95% green, and 87% blue. In the HSL color space, it has a hue of 145°, saturation of 53%, and lightness of 88%.

HEX
#D2F1DF
RGB
210, 241, 223
HSL
145°, 53%, 88%
HSV
145°, 13%, 95%
CMYK
13%, 0%, 7%, 5%
Name Match
Gainsboro
Closest Standard

Shades of #D2F1DF (Darker Variations)

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

Tints of #D2F1DF (Lighter Variations)

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

Tones of #D2F1DF (Muted Variations)

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

Color Harmonies for #D2F1DF

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

Developer Code Snippets & Tailwind CSS

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

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