Web Safe Color
Copy-ready color values
HEX
#FF66FFRGB
rgb(255, 102, 255)HSL
hsl(300, 100%, 70%)HSV
hsv(300, 60%, 100%)CMYK approx.
cmyk(0, 60, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF66FF | |
| RGB | rgb(255, 102, 255) | |
| HSL | hsl(300, 100%, 70%) | |
| HSV | hsv(300, 60%, 100%) | |
| CMYK approx. | cmyk(0, 60, 0, 0) | |
| CSS keyword | ff66ff |
Contrast and classification
LightLightness2.44:1Contrast with white8.60:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#FF75FF
White 30%#FF94FF
White 70%#FFD1FF
White 90%#FFF0FF
Black 10%#E65CE6
Black 30%#B347B3
Black 70%#4D1F4D
Black 90%#1A0A1A
Harmony palettes
Complementary
#009900#3DB13DAnalogous
#ED66FF#FF78EDTriadic
#66FFFF#FFFF66Split complementary
#2EAB2E#007D00Using Ff66ff
Ff66ff 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-ff66ff: #ff66ff;
}
.button-primary {
background: var(--color-ff66ff);
color: #000000;
}
$ff66ff: #ff66ff;
// Tailwind arbitrary value
class="bg-[#ff66ff] text-white"