Web Safe Color

Copy-ready color values

HEX#FFFFCC
RGBrgb(255, 255, 204)
HSLhsl(60, 100%, 90%)
HSVhsv(60, 20%, 100%)
CMYK approx.cmyk(0, 0, 20, 0)

Color value table

FormatValueCopy
HEX#FFFFCC
RGBrgb(255, 255, 204)
HSLhsl(60, 100%, 90%)
HSVhsv(60, 20%, 100%)
CMYK approx.cmyk(0, 0, 20, 0)
CSS keywordffffcc

Contrast and classification

LightLightness1.03:1Contrast with white20.43:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFFFD1

White 30%
#FFFFDB

White 70%
#FFFFF0

White 90%
#FFFFFA

Black 10%
#E6E6B8

Black 30%
#B3B38F

Black 70%
#4D4D3D

Black 90%
#1A1A14

Harmony palettes

Complementary

#000033
#3D3D64

Analogous

#FFFFD2
#FFF9D2

Triadic

#FFCCFF
#CCFFFF

Split complementary

#2E2E58
#00002A

Using Ffffcc

Ffffcc 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-ffffcc: #ffffcc;
}

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

$ffffcc: #ffffcc;

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