CSS Named Color
Copy-ready color values
HEX
#FAFAD2RGB
rgb(250, 250, 210)HSL
hsl(60, 80%, 90%)HSV
hsv(60, 16%, 98%)CMYK approx.
cmyk(0, 0, 16, 2)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FAFAD2 | |
| RGB | rgb(250, 250, 210) | |
| HSL | hsl(60, 80%, 90%) | |
| HSV | hsv(60, 16%, 98%) | |
| CMYK approx. | cmyk(0, 0, 16, 2) | |
| CSS keyword | lightgoldenrodyellow |
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#41415FAnalogous
#FAFAD7#FAF5D7Triadic
#FAD2FA#D2FAFASplit complementary
#323253#040425Using 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"