Web Safe Color
Copy-ready color values
HEX
#CC66FFRGB
rgb(204, 102, 255)HSL
hsl(280, 100%, 70%)HSV
hsv(280, 60%, 100%)CMYK approx.
cmyk(20, 60, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC66FF | |
| RGB | rgb(204, 102, 255) | |
| HSL | hsl(280, 100%, 70%) | |
| HSV | hsv(280, 60%, 100%) | |
| CMYK approx. | cmyk(20, 60, 0, 0) | |
| CSS keyword | cc66ff |
Contrast and classification
LightLightness3.04:1Contrast with white6.91:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#D175FF
White 30%#DB94FF
White 70%#F0D1FF
White 90%#FAF0FF
Black 10%#B85CE6
Black 30%#8F47B3
Black 70%#3D1F4D
Black 90%#140A1A
Harmony palettes
Complementary
#339900#64B13DAnalogous
#C066F9#CC78EDTriadic
#66FFCC#FFCC66Split complementary
#58AB2E#2A7D00Using Cc66ff
Cc66ff 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-cc66ff: #cc66ff;
}
.button-primary {
background: var(--color-cc66ff);
color: #000000;
}
$cc66ff: #cc66ff;
// Tailwind arbitrary value
class="bg-[#cc66ff] text-white"