Web Safe Color

Copy-ready color values

HEX#FF9999
RGBrgb(255, 153, 153)
HSLhsl(0, 100%, 80%)
HSVhsv(0, 40%, 100%)
CMYK approx.cmyk(0, 40, 40, 0)

Color value table

FormatValueCopy
HEX#FF9999
RGBrgb(255, 153, 153)
HSLhsl(0, 100%, 80%)
HSVhsv(0, 40%, 100%)
CMYK approx.cmyk(0, 40, 40, 0)
CSS keywordff9999

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
#3D8B8B

Analogous

#F399A5
#FF9999

Triadic

#9999FF
#99FF99

Split complementary

#2E8282
#005454

Using 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"