Gold (metallic)
HEX: #D4AF37 | Modern Palette
Color Specifications
#D4AF37
212, 175, 55
45°, 74% ,83%
0, 17.45, 74.06, 16.86
About Gold (metallic)
Gold (metallic) (#D4AF37) is a color with RGB(212, 175, 55) and HSL(45.86°, 74.06%, 83.14%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #375CD4, which creates strong contrast. Its triadic palette includes #37D4AF and #AF37D4. The name comes from *gulþą (Proto-Germanic).
- HEX: #D4AF37
- RGB: 212, 175, 55
- HSL: 45.86°, 74.06%, 83.14%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #375CD4
- Triadic colors: #37D4AF, #AF37D4
- The name comes from *gulþą (Proto-Germanic).
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 #D4AF37 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#BBBB33
#B4B438
#DBA6A6
#B3B3B3
Frequently Asked Questions
Name, History & Etymology
History
Gold has been highly valued since ancient times for its rarity, resistance to corrosion, and beautiful luster. It was one of the first metals to be worked by humans, appearing in artifacts from various ancient civilizations including Egypt, Mesopotamia, and the Indus Valley. Its use as currency dates back to around 600 BCE with the Lydians. Throughout history, gold has been a symbol of wealth, power, and divinity, used in coinage, jewelry, religious artifacts, and decorative arts. Major gold rushes in the 19th century (e.g., California, Australia) significantly impacted global economies and migration patterns. Today, it remains a crucial investment commodity, industrial material (electronics, dentistry), and luxury item.
First Recorded Use
Before 2000 BCE (evidence of early gold use)
Cultural Associations
Symbol of wealth, prosperity, and status across nearly all cultures. Associated with divinity, royalty, and the sun in many ancient mythologies (e.g., Ra in Egypt, Apollo in Greece). Used extensively in religious iconography and artifacts (e.g., golden altars, Buddha statues, Christian chalices). The 'golden rule' (treat others as you would like to be treated) reflects its value as a standard of excellence. Often represents purity, perfection, and enduring value (e.g., 'heart of gold', 'golden age').
Code Snippets
/* Background */
.element {
background-color: #D4AF37;
}
/* Text */
.element {
color: #D4AF37;
}
/* Border */
.element {
border: 1px solid #D4AF37;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D4AF37,
#B4C3F4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D4AF37,
#B4C3F4
);
}
// SCSS variable
$gold-(metallic): #D4AF37;
// With RGB channels (useful for rgba() usage)
$gold-(metallic)-r: 212;
$gold-(metallic)-g: 175;
$gold-(metallic)-b: 55;
// Usage
.element {
background-color: $gold-(metallic);
color: rgba($gold-(metallic)-r, $gold-(metallic)-g, $gold-(metallic)-b, 0.8);
}