Web Safe Color

Copy-ready color values

HEX#FF9966
RGBrgb(255, 153, 102)
HSLhsl(20, 100%, 70%)
HSVhsv(20, 60%, 100%)
CMYK approx.cmyk(0, 40, 60, 0)

Color value table

FormatValueCopy
HEX#FF9966
RGBrgb(255, 153, 102)
HSLhsl(20, 100%, 70%)
HSVhsv(20, 60%, 100%)
CMYK approx.cmyk(0, 40, 60, 0)
CSS keywordff9966

Contrast and classification

LightLightness2.10:1Contrast with white10.00:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFA375

White 30%
#FFB894

White 70%
#FFE0D1

White 90%
#FFF5F0

Black 10%
#E68A5C

Black 30%
#B36B47

Black 70%
#4D2E1F

Black 90%
#1A0F0A

Harmony palettes

Complementary

#006699
#3D8BB1

Analogous

#F39978
#FF936C

Triadic

#9966FF
#66FF99

Split complementary

#2E82AB
#00547D

Using Ff9966

Ff9966 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-ff9966: #ff9966;
}

.button-primary {
  background: var(--color-ff9966);
  color: #000000;
}

$ff9966: #ff9966;

// Tailwind arbitrary value
class="bg-[#ff9966] text-white"