Web Safe Color
Copy-ready color values
HEX
#FF0066RGB
rgb(255, 0, 102)HSL
hsl(336, 100%, 50%)HSV
hsv(336, 100%, 100%)CMYK approx.
cmyk(0, 100, 60, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF0066 | |
| RGB | rgb(255, 0, 102) | |
| HSL | hsl(336, 100%, 50%) | |
| HSV | hsv(336, 100%, 100%) | |
| CMYK approx. | cmyk(0, 100, 60, 0) | |
| CSS keyword | ff0066 |
Contrast and classification
DarkLightness3.86:1Contrast with white5.44:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#FF1A75
White 30%#FF4D94
White 70%#FFB3D1
White 90%#FFE6F0
Black 10%#E6005C
Black 30%#B30047
Black 70%#4D001F
Black 90%#1A000A
Harmony palettes
Complementary
#00FF99#3DFFB1Analogous
#E00078#FF0C5ATriadic
#0066FF#66FF00Split complementary
#2EFFAB#00D17DUsing Ff0066
Ff0066 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-ff0066: #ff0066;
}
.button-primary {
background: var(--color-ff0066);
color: #000000;
}
$ff0066: #ff0066;
// Tailwind arbitrary value
class="bg-[#ff0066] text-white"