Gainsboro (Neutral)
#DBDBDC
RGB: 219, 219, 220
Color OverviewHEX #DBDBDC

#DBDBDC Color Code Information

In the RGB color space, #DBDBDC is composed of 86% red, 86% green, and 86% blue. In the HSL color space, it has a hue of 240°, saturation of 1%, and lightness of 86%.

HEX
#DBDBDC
RGB
219, 219, 220
HSL
240°, 1%, 86%
HSV
240°, 0%, 86%
CMYK
0%, 0%, 0%, 14%
Name Match
Gainsboro
Closest Standard

Shades of #DBDBDC (Darker Variations)

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

Tints of #DBDBDC (Lighter Variations)

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

Tones of #DBDBDC (Muted Variations)

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

Color Harmonies for #DBDBDC

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

Developer Code Snippets & Tailwind CSS

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

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