Lavender (Purple)
#DEF2FF
RGB: 222, 242, 255
Color OverviewHEX #DEF2FF

#DEF2FF Color Code Information

In the RGB color space, #DEF2FF is composed of 87% red, 95% green, and 100% blue. In the HSL color space, it has a hue of 204°, saturation of 100%, and lightness of 94%.

HEX
#DEF2FF
RGB
222, 242, 255
HSL
204°, 100%, 94%
HSV
204°, 13%, 100%
CMYK
13%, 5%, 0%, 0%
Name Match
Lavender
Closest Standard

Shades of #DEF2FF (Darker Variations)

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

Tints of #DEF2FF (Lighter Variations)

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

Tones of #DEF2FF (Muted Variations)

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

Color Harmonies for #DEF2FF

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

Developer Code Snippets & Tailwind CSS

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

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