Pink (Pink)
#FFCCCC
RGB: 255, 204, 204
Color OverviewHEX #FFCCCC

#FFCCCC Color Code Information

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

HEX
#FFCCCC
RGB
255, 204, 204
HSL
0°, 100%, 90%
HSV
0°, 20%, 100%
CMYK
0%, 20%, 20%, 0%
Name Match
Pink
Closest Standard

Shades of #FFCCCC (Darker Variations)

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

Tints of #FFCCCC (Lighter Variations)

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

Tones of #FFCCCC (Muted Variations)

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

Color Harmonies for #FFCCCC

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

Developer Code Snippets & Tailwind CSS

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

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