Light Goldenrod Yellow
HEX: #FAFAD2 | Modern Palette
Color Specifications
#FAFAD2
250, 250, 210
60°, 80% ,90%
0, 0, 16, 2
About Light Goldenrod Yellow
Light Goldenrod Yellow (#FAFAD2) is a color with RGB(250, 250, 210) and HSL(60°, 80%, 90.2%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #D2D2FA, which creates strong contrast. Its triadic palette includes #D2FAFA and #FAD2FA. The name comes from Light Goldenrod Yellow (English).
- HEX: #FAFAD2
- RGB: 250, 250, 210
- HSL: 60°, 80%, 90.2%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #D2D2FA
- Triadic colors: #D2FAFA, #FAD2FA
- The name comes from Light Goldenrod Yellow (English).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #FAFAD2 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#FAFAD2
#FAFAD2
#FFF5F5
#F7F7F7
Frequently Asked Questions
Name, History & Etymology
History
The color 'goldenrod' itself is named after the plant of the same name, known for its bright yellow flowers. The addition of 'light' modifies this to a paler version. This specific shade, #fafad2, is one of the X11 color names, which were developed for the X Window System in the late 1980s and early 1990s. These names and their corresponding RGB values were later adopted as standard web colors, making 'Light Goldenrod Yellow' a recognized color in digital design and web development.
First Recorded Use
The specific named color 'Light Goldenrod Yellow' with its #fafad2 hexadecimal value became standardized much later, particularly with the advent of web colors and digital color systems. The general description 'goldenrod yellow' for a color has been in use longer, referring to the color of the plant. 'Light Goldenrod Yellow' as a distinct named color was formalized in X11 color names and subsequently adopted by web standards.
Cultural Associations
In Western cultures, yellow is often associated with happiness, sunshine, and energy. Lighter shades of yellow, like Light Goldenrod Yellow, can evoke feelings of softness, warmth, and pleasantness. It's a less intense yellow, making it suitable for backgrounds or subtle accents where a vibrant yellow might be too overpowering. It's a common color in web design due to its inclusion in standard web color palettes.
Code Snippets
/* Background */
.element {
background-color: #FAFAD2;
}
/* Text */
.element {
color: #FAFAD2;
}
/* Border */
.element {
border: 1px solid #FAFAD2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FAFAD2,
#D2D2FA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FAFAD2,
#D2D2FA
);
}
// SCSS variable
$light-goldenrod-yellow: #FAFAD2;
// With RGB channels (useful for rgba() usage)
$light-goldenrod-yellow-r: 250;
$light-goldenrod-yellow-g: 250;
$light-goldenrod-yellow-b: 210;
// Usage
.element {
background-color: $light-goldenrod-yellow;
color: rgba($light-goldenrod-yellow-r, $light-goldenrod-yellow-g, $light-goldenrod-yellow-b, 0.8);
}