Lavender Blush (Pink)
#FFF2FC
RGB: 255, 242, 252
Color OverviewHEX #FFF2FC

#FFF2FC Color Code Information

In the RGB color space, #FFF2FC is composed of 100% red, 95% green, and 99% blue. In the HSL color space, it has a hue of 314°, saturation of 100%, and lightness of 97%.

HEX
#FFF2FC
RGB
255, 242, 252
HSL
314°, 100%, 97%
HSV
314°, 5%, 100%
CMYK
0%, 5%, 1%, 0%
Name Match
Lavender Blush
Closest Standard

Shades of #FFF2FC (Darker Variations)

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

Tints of #FFF2FC (Lighter Variations)

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

Tones of #FFF2FC (Muted Variations)

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

Color Harmonies for #FFF2FC

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

Developer Code Snippets & Tailwind CSS

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

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