Web Safe Color

Copy-ready color values

HEX#FFCCCC
RGBrgb(255, 204, 204)
HSLhsl(0, 100%, 90%)
HSVhsv(0, 20%, 100%)
CMYK approx.cmyk(0, 20, 20, 0)

Color value table

FormatValueCopy
HEX#FFCCCC
RGBrgb(255, 204, 204)
HSLhsl(0, 100%, 90%)
HSVhsv(0, 20%, 100%)
CMYK approx.cmyk(0, 20, 20, 0)
CSS keywordffcccc

Contrast and classification

LightLightness1.42:1Contrast with white14.76:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#FFD1D1

White 30%
#FFDBDB

White 70%
#FFF0F0

White 90%
#FFFAFA

Black 10%
#E6B8B8

Black 30%
#B38F8F

Black 70%
#4D3D3D

Black 90%
#1A1414

Harmony palettes

Complementary

#003333
#3D6464

Analogous

#F9CCD2
#FFCCCC

Triadic

#CCCCFF
#CCFFCC

Split complementary

#2E5858
#002A2A

Using Ffcccc

Ffcccc works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.

CSS, SCSS, and Tailwind examples

:root {
  --color-ffcccc: #ffcccc;
}

.button-primary {
  background: var(--color-ffcccc);
  color: #000000;
}

$ffcccc: #ffcccc;

// Tailwind arbitrary value
class="bg-[#ffcccc] text-white"