CSS Named Color

Copy-ready color values

HEX#FAFAD2
RGBrgb(250, 250, 210)
HSLhsl(60, 80%, 90%)
HSVhsv(60, 16%, 98%)
CMYK approx.cmyk(0, 0, 16, 2)

Color value table

FormatValueCopy
HEX#FAFAD2
RGBrgb(250, 250, 210)
HSLhsl(60, 80%, 90%)
HSVhsv(60, 16%, 98%)
CMYK approx.cmyk(0, 0, 16, 2)
CSS keywordlightgoldenrodyellow

Contrast and classification

LightLightness1.07:1Contrast with white19.67:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FBFBD7

White 30%
#FCFCE0

White 70%
#FEFEF2

White 90%
#FFFFFB

Black 10%
#E1E1BD

Black 30%
#AFAF93

Black 70%
#4B4B3F

Black 90%
#191915

Harmony palettes

Complementary

#05052D
#41415F

Analogous

#FAFAD7
#FAF5D7

Triadic

#FAD2FA
#D2FAFA

Split complementary

#323253
#040425

Using Lightgoldenrodyellow

Lightgoldenrodyellow 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-lightgoldenrodyellow: #fafad2;
}

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

$lightgoldenrodyellow: #fafad2;

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