Web Safe Color
Copy-ready color values
HEX
#CC99FFRGB
rgb(204, 153, 255)HSL
hsl(270, 100%, 80%)HSV
hsv(270, 40%, 100%)CMYK approx.
cmyk(20, 40, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC99FF | |
| RGB | rgb(204, 153, 255) | |
| HSL | hsl(270, 100%, 80%) | |
| HSV | hsv(270, 40%, 100%) | |
| CMYK approx. | cmyk(20, 40, 0, 0) | |
| CSS keyword | cc99ff |
Contrast and classification
LightLightness2.19:1Contrast with white9.57:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#D1A3FF
White 30%#DBB8FF
White 70%#F0E0FF
White 90%#FAF5FF
Black 10%#B88AE6
Black 30%#8F6BB3
Black 70%#3D2E4D
Black 90%#140F1A
Harmony palettes
Complementary
#336600#648B3DAnalogous
#C699F9#CCA5F3Triadic
#99FFCC#FFCC99Split complementary
#58822E#2A5400Using Cc99ff
Cc99ff 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-cc99ff: #cc99ff;
}
.button-primary {
background: var(--color-cc99ff);
color: #000000;
}
$cc99ff: #cc99ff;
// Tailwind arbitrary value
class="bg-[#cc99ff] text-white"