White Smoke (Neutral)
#EDEDED
RGB: 237, 237, 237
Color OverviewHEX #EDEDED

#EDEDED Color Code Information

In the RGB color space, #EDEDED is composed of 93% red, 93% green, and 93% blue. In the HSL color space, it has a hue of 0°, saturation of 0%, and lightness of 93%.

HEX
#EDEDED
RGB
237, 237, 237
HSL
0°, 0%, 93%
HSV
0°, 0%, 93%
CMYK
0%, 0%, 0%, 7%
Name Match
White Smoke
Closest Standard

Shades of #EDEDED (Darker Variations)

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

Tints of #EDEDED (Lighter Variations)

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

Tones of #EDEDED (Muted Variations)

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

Color Harmonies for #EDEDED

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

Developer Code Snippets & Tailwind CSS

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

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