Pale Gold
HEX: #E6BE8A | Modern Palette
Color Specifications
#E6BE8A
230, 190, 138
33°, 64% ,72%
0, 17, 40, 10
About Pale Gold
Pale Gold (#E6BE8A) is a color with RGB(230, 190, 138) and HSL(33.9°, 64.8%, 72.2%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #8AB2E6, which creates strong contrast. Its triadic palette includes #8AE6BE and #BE8AE6. The name comes from Pale Gold (English).
- HEX: #E6BE8A
- RGB: 230, 190, 138
- HSL: 33.9°, 64.8%, 72.2%
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #8AB2E6
- Triadic colors: #8AE6BE, #BE8AE6
- The name comes from Pale Gold (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 #E6BE8A from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of gold as a color is ancient, representing wealth, divinity, and royalty across countless cultures. As dyes and pigments became more sophisticated, and the need for precise color communication grew, modifiers like 'pale' became essential. 'Pale gold' distinguishes itself from brighter, more saturated golds, often evoking a sense of vintage, antique, or understated luxury. Its use became more common with the advent of standardized color charts and increased industrial production of colored goods.
First Recorded Use
While 'pale' and 'gold' have existed for centuries, the specific compound 'pale gold' as a distinct color descriptor gained prominence in fashion, art, and interior design literature from the late 19th century onwards. Earlier uses might describe the quality of gold, but not necessarily as a named color.
Cultural Associations
Pale gold is often associated with elegance, subtlety, and warmth. In fashion, it can be seen in evening wear, jewelry, and accessories, offering a less ostentatious alternative to bright gold. In interior design, it's used to create sophisticated and inviting spaces, often paired with creams, whites, and other muted tones. It can also evoke natural elements like sand, aged parchment, or certain types of wood. It's less 'blingy' than pure gold, suggesting a more refined taste.
Code Snippets
/* Background */
.element {
background-color: #E6BE8A;
}
/* Text */
.element {
color: #E6BE8A;
}
/* Border */
.element {
border: 1px solid #E6BE8A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E6BE8A,
#8AB2E6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E6BE8A,
#8AB2E6
);
}
// SCSS variable
$pale-gold: #E6BE8A;
// With RGB channels (useful for rgba() usage)
$pale-gold-r: 230;
$pale-gold-g: 190;
$pale-gold-b: 138;
// Usage
.element {
background-color: $pale-gold;
color: rgba($pale-gold-r, $pale-gold-g, $pale-gold-b, 0.8);
}