Web Safe Color
Copy-ready color values
HEX
#FF6699RGB
rgb(255, 102, 153)HSL
hsl(340, 100%, 70%)HSV
hsv(340, 60%, 100%)CMYK approx.
cmyk(0, 60, 40, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF6699 | |
| RGB | rgb(255, 102, 153) | |
| HSL | hsl(340, 100%, 70%) | |
| HSV | hsv(340, 60%, 100%) | |
| CMYK approx. | cmyk(0, 60, 40, 0) | |
| CSS keyword | ff6699 |
Contrast and classification
LightLightness2.76:1Contrast with white7.61:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#FF75A3
White 30%#FF94B8
White 70%#FFD1E0
White 90%#FFF0F5
Black 10%#E65C8A
Black 30%#B3476B
Black 70%#4D1F2E
Black 90%#1A0A0F
Harmony palettes
Complementary
#009966#3DB18BAnalogous
#ED66A5#FF6C93Triadic
#6699FF#99FF66Split complementary
#2EAB82#007D54Using Ff6699
Ff6699 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-ff6699: #ff6699;
}
.button-primary {
background: var(--color-ff6699);
color: #000000;
}
$ff6699: #ff6699;
// Tailwind arbitrary value
class="bg-[#ff6699] text-white"