CSS Named Color

Copy-ready color values

HEX#EEE8AA
RGBrgb(238, 232, 170)
HSLhsl(55, 67%, 80%)
HSVhsv(55, 29%, 93%)
CMYK approx.cmyk(0, 3, 29, 7)

Color value table

FormatValueCopy
HEX#EEE8AA
RGBrgb(238, 232, 170)
HSLhsl(55, 67%, 80%)
HSVhsv(55, 29%, 93%)
CMYK approx.cmyk(0, 3, 29, 7)
CSS keywordpalegoldenrod

Contrast and classification

LightLightness1.25:1Contrast with white16.76:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#F0EAB3

White 30%
#F3EFC4

White 70%
#FAF8E6

White 90%
#FDFDF7

Black 10%
#D6D199

Black 30%
#A7A277

Black 70%
#474633

Black 90%
#181711

Harmony palettes

Complementary

#111755
#4A4F7E

Analogous

#EDE8B2
#EEE1B1

Triadic

#E8AAEE
#AAEEE8

Split complementary

#3C4174
#0E1346

Using Palegoldenrod

Palegoldenrod 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-palegoldenrod: #eee8aa;
}

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

$palegoldenrod: #eee8aa;

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