Lavender Blush (Pink)
#FFF0FC
RGB: 255, 240, 252
Color OverviewHEX #FFF0FC

#FFF0FC Color Code Information

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

HEX
#FFF0FC
RGB
255, 240, 252
HSL
312°, 100%, 97%
HSV
312°, 6%, 100%
CMYK
0%, 6%, 1%, 0%
Name Match
Lavender Blush
Closest Standard

Shades of #FFF0FC (Darker Variations)

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

Tints of #FFF0FC (Lighter Variations)

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

Tones of #FFF0FC (Muted Variations)

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

Color Harmonies for #FFF0FC

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

Developer Code Snippets & Tailwind CSS

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

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