Web Safe Color
Copy-ready color values
HEX
#FF9999RGB
rgb(255, 153, 153)HSL
hsl(0, 100%, 80%)HSV
hsv(0, 40%, 100%)CMYK approx.
cmyk(0, 40, 40, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF9999 | |
| RGB | rgb(255, 153, 153) | |
| HSL | hsl(0, 100%, 80%) | |
| HSV | hsv(0, 40%, 100%) | |
| CMYK approx. | cmyk(0, 40, 40, 0) | |
| CSS keyword | ff9999 |
Contrast and classification
LightLightness2.05:1Contrast with white10.27:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#FFA3A3
White 30%#FFB8B8
White 70%#FFE0E0
White 90%#FFF5F5
Black 10%#E68A8A
Black 30%#B36B6B
Black 70%#4D2E2E
Black 90%#1A0F0F
Harmony palettes
Complementary
#006666#3D8B8BAnalogous
#F399A5#FF9999Triadic
#9999FF#99FF99Split complementary
#2E8282#005454Using Ff9999
Ff9999 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-ff9999: #ff9999;
}
.button-primary {
background: var(--color-ff9999);
color: #000000;
}
$ff9999: #ff9999;
// Tailwind arbitrary value
class="bg-[#ff9999] text-white"