Web Safe Color

Copy-ready color values

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

Color value table

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

Contrast and classification

LightLightness1.37:1Contrast with white15.33:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#FFD1FF

White 30%
#FFDBFF

White 70%
#FFF0FF

White 90%
#FFFAFF

Black 10%
#E6B8E6

Black 30%
#B38FB3

Black 70%
#4D3D4D

Black 90%
#1A141A

Harmony palettes

Complementary

#003300
#3D643D

Analogous

#F9CCFF
#FFD2F9

Triadic

#CCFFFF
#FFFFCC

Split complementary

#2E582E
#002A00

Using Ffccff

Ffccff 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-ffccff: #ffccff;
}

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

$ffccff: #ffccff;

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