Web Safe Color
Copy-ready color values
HEX
#FF99CCRGB
rgb(255, 153, 204)HSL
hsl(330, 100%, 80%)HSV
hsv(330, 40%, 100%)CMYK approx.
cmyk(0, 40, 20, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF99CC | |
| RGB | rgb(255, 153, 204) | |
| HSL | hsl(330, 100%, 80%) | |
| HSV | hsv(330, 40%, 100%) | |
| CMYK approx. | cmyk(0, 40, 20, 0) | |
| CSS keyword | ff99cc |
Contrast and classification
LightLightness1.97:1Contrast with white10.68:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#FFA3D1
White 30%#FFB8DB
White 70%#FFE0F0
White 90%#FFF5FA
Black 10%#E68AB8
Black 30%#B36B8F
Black 70%#4D2E3D
Black 90%#1A0F14
Harmony palettes
Complementary
#006633#3D8B64Analogous
#F399D2#FF9FC6Triadic
#99CCFF#CCFF99Split complementary
#2E8258#00542AUsing Ff99cc
Ff99cc 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-ff99cc: #ff99cc;
}
.button-primary {
background: var(--color-ff99cc);
color: #000000;
}
$ff99cc: #ff99cc;
// Tailwind arbitrary value
class="bg-[#ff99cc] text-white"