Web Safe Color
Copy-ready color values
HEX
#FFCCFFRGB
rgb(255, 204, 255)HSL
hsl(300, 100%, 90%)HSV
hsv(300, 20%, 100%)CMYK approx.
cmyk(0, 20, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFCCFF | |
| RGB | rgb(255, 204, 255) | |
| HSL | hsl(300, 100%, 90%) | |
| HSV | hsv(300, 20%, 100%) | |
| CMYK approx. | cmyk(0, 20, 0, 0) | |
| CSS keyword | ffccff |
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#3D643DAnalogous
#F9CCFF#FFD2F9Triadic
#CCFFFF#FFFFCCSplit complementary
#2E582E#002A00Using 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"