Web Safe Color
Copy-ready color values
HEX
#FF66CCRGB
rgb(255, 102, 204)HSL
hsl(320, 100%, 70%)HSV
hsv(320, 60%, 100%)CMYK approx.
cmyk(0, 60, 20, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF66CC | |
| RGB | rgb(255, 102, 204) | |
| HSL | hsl(320, 100%, 70%) | |
| HSV | hsv(320, 60%, 100%) | |
| CMYK approx. | cmyk(0, 60, 20, 0) | |
| CSS keyword | ff66cc |
Contrast and classification
LightLightness2.62:1Contrast with white8.02:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#FF75D1
White 30%#FF94DB
White 70%#FFD1F0
White 90%#FFF0FA
Black 10%#E65CB8
Black 30%#B3478F
Black 70%#4D1F3D
Black 90%#1A0A14
Harmony palettes
Complementary
#009933#3DB164Analogous
#ED66D2#FF72C0Triadic
#66CCFF#CCFF66Split complementary
#2EAB58#007D2AUsing Ff66cc
Ff66cc 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-ff66cc: #ff66cc;
}
.button-primary {
background: var(--color-ff66cc);
color: #000000;
}
$ff66cc: #ff66cc;
// Tailwind arbitrary value
class="bg-[#ff66cc] text-white"