Pale Goldenrod
HEX: #EEE8AA | Modern Palette
Color Specifications
#EEE8AA
238, 232, 170
54°, 66% ,80%
0, 3, 29, 7
About Pale Goldenrod
Pale Goldenrod (#EEE8AA) is a color with RGB(238, 232, 170) and HSL(54.7°, 66.7%, 80%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #AAB0EE, which creates strong contrast. Its triadic palette includes #AAEEE8 and #E8AAEE. The name comes from Pale Goldenrod (English).
- HEX: #EEE8AA
- RGB: 238, 232, 170
- HSL: 54.7°, 66.7%, 80%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #AAB0EE
- Triadic colors: #AAEEE8, #E8AAEE
- The name comes from Pale Goldenrod (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 #EEE8AA from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#EAEAAA
#E9E9AA
#F5E1E1
#E6E6E6
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. As with many natural colors, variations like 'pale goldenrod' emerged to describe lighter or less saturated versions. The standardization of 'Pale Goldenrod' as a specific web color (with hex #eee8aa) makes it a distinct entity in digital design. It's part of the extended X11 color set, which was later adopted by web browsers.
First Recorded Use
The specific named color 'Pale Goldenrod' with its hex code #eee8aa is a relatively modern standardization, particularly prominent with the advent of web colors and digital color systems. However, descriptions of 'pale goldenrod' as a color would have existed earlier. The X11 color name 'PaleGoldenrod' was introduced as part of the X Window System's color database, which became widely used in computing.
Cultural Associations
In general, pale yellows and golds are often associated with softness, warmth, light, and sometimes vintage aesthetics. 'Pale Goldenrod' specifically, due to its digital standardization, is frequently encountered in web design, user interfaces, and digital art where a subtle, warm, and light yellow is desired. It's less assertive than a pure yellow or a vibrant goldenrod, making it suitable for backgrounds or accents.
Code Snippets
/* Background */
.element {
background-color: #EEE8AA;
}
/* Text */
.element {
color: #EEE8AA;
}
/* Border */
.element {
border: 1px solid #EEE8AA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EEE8AA,
#AAB0EE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EEE8AA,
#AAB0EE
);
}
// SCSS variable
$pale-goldenrod: #EEE8AA;
// With RGB channels (useful for rgba() usage)
$pale-goldenrod-r: 238;
$pale-goldenrod-g: 232;
$pale-goldenrod-b: 170;
// Usage
.element {
background-color: $pale-goldenrod;
color: rgba($pale-goldenrod-r, $pale-goldenrod-g, $pale-goldenrod-b, 0.8);
}