CSS Named Color

Copy-ready color values

HEX#FFFFF0
RGBrgb(255, 255, 240)
HSLhsl(60, 100%, 97%)
HSVhsv(60, 6%, 100%)
CMYK approx.cmyk(0, 0, 6, 0)

Color value table

FormatValueCopy
HEX#FFFFF0
RGBrgb(255, 255, 240)
HSLhsl(60, 100%, 97%)
HSVhsv(60, 6%, 100%)
CMYK approx.cmyk(0, 0, 6, 0)
CSS keywordivory

Contrast and classification

LightLightness1.01:1Contrast with white20.81:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFFFF2

White 30%
#FFFFF5

White 70%
#FFFFFB

White 90%
#FFFFFE

Black 10%
#E6E6D8

Black 30%
#B3B3A8

Black 70%
#4D4D48

Black 90%
#1A1A18

Harmony palettes

Complementary

#00000F
#3D3D49

Analogous

#FFFFF2
#FFFDF2

Triadic

#FFF0FF
#F0FFFF

Split complementary

#2E2E3A
#00000C

Using Ivory

Ivory 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-ivory: #fffff0;
}

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

$ivory: #fffff0;

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