Web Safe Color

Copy-ready color values

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

Color value table

FormatValueCopy
HEX#FFCC66
RGBrgb(255, 204, 102)
HSLhsl(40, 100%, 70%)
HSVhsv(40, 60%, 100%)
CMYK approx.cmyk(0, 20, 60, 0)
CSS keywordffcc66

Contrast and classification

LightLightness1.49:1Contrast with white14.08:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFD175

White 30%
#FFDB94

White 70%
#FFF0D1

White 90%
#FFFAF0

Black 10%
#E6B85C

Black 30%
#B38F47

Black 70%
#4D3D1F

Black 90%
#1A140A

Harmony palettes

Complementary

#003399
#3D64B1

Analogous

#F9CC78
#FFC072

Triadic

#CC66FF
#66FFCC

Split complementary

#2E58AB
#002A7D

Using Ffcc66

Ffcc66 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-ffcc66: #ffcc66;
}

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

$ffcc66: #ffcc66;

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