Lavender (Purple)
#F2CCFF
RGB: 242, 204, 255
Color OverviewHEX #F2CCFF

#F2CCFF Color Code Information

In the RGB color space, #F2CCFF is composed of 95% red, 80% green, and 100% blue. In the HSL color space, it has a hue of 285°, saturation of 100%, and lightness of 90%.

HEX
#F2CCFF
RGB
242, 204, 255
HSL
285°, 100%, 90%
HSV
285°, 20%, 100%
CMYK
5%, 20%, 0%, 0%
Name Match
Lavender
Closest Standard

Shades of #F2CCFF (Darker Variations)

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

Tints of #F2CCFF (Lighter Variations)

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

Tones of #F2CCFF (Muted Variations)

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

Color Harmonies for #F2CCFF

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

Developer Code Snippets & Tailwind CSS

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

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