Web Safe Color

Copy-ready color values

HEX#FFCC99
RGBrgb(255, 204, 153)
HSLhsl(30, 100%, 80%)
HSVhsv(30, 40%, 100%)
CMYK approx.cmyk(0, 20, 40, 0)

Color value table

FormatValueCopy
HEX#FFCC99
RGBrgb(255, 204, 153)
HSLhsl(30, 100%, 80%)
HSVhsv(30, 40%, 100%)
CMYK approx.cmyk(0, 20, 40, 0)
CSS keywordffcc99

Contrast and classification

LightLightness1.46:1Contrast with white14.35:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFD1A3

White 30%
#FFDBB8

White 70%
#FFF0E0

White 90%
#FFFAF5

Black 10%
#E6B88A

Black 30%
#B38F6B

Black 70%
#4D3D2E

Black 90%
#1A140F

Harmony palettes

Complementary

#003366
#3D648B

Analogous

#F9CCA5
#FFC69F

Triadic

#CC99FF
#99FFCC

Split complementary

#2E5882
#002A54

Using Ffcc99

Ffcc99 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-ffcc99: #ffcc99;
}

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

$ffcc99: #ffcc99;

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