Old Gold
HEX: #CFB53B | Modern Palette
Color Specifications
#CFB53B
207, 181, 59
49°, 60% ,52%
0, 13, 71, 19
About Old Gold
Old Gold (#CFB53B) is a color with RGB(207, 181, 59) and HSL(49.5°, 60.7%, 52.2%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #3B55CF, which creates strong contrast. Its triadic palette includes #3BCFB5 and #B53BCF. The name comes from Old Gold (English).
- HEX: #CFB53B
- RGB: 207, 181, 59
- HSL: 49.5°, 60.7%, 52.2%
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #3B55CF
- Triadic colors: #3BCFB5, #B53BCF
- The name comes from Old 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 #CFB53B from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'gold' as a color has existed since antiquity, directly referencing the precious metal. As dyes and pigments became more sophisticated, and as fashion and design trends evolved, there was a need to differentiate various shades of gold. 'Old gold' emerged to describe a specific, often less vibrant, more antique-looking shade. It gained significant popularity during the Art Nouveau and Arts and Crafts movements, where natural and muted tones were favored. It has since remained a classic color, often associated with richness, tradition, and vintage aesthetics.
First Recorded Use
The term 'old gold' as a color descriptor became more common in the late 19th century, particularly in fashion, interior design, and art to distinguish it from brighter, more metallic golds.
Cultural Associations
Old gold is frequently used in heraldry, academic regalia (especially for certain disciplines like science or arts), and military decorations to signify honor, achievement, and tradition. In interior design, it often evokes a sense of classic elegance or vintage charm. It's also a popular color in autumn palettes due to its warm, earthy undertones.
Code Snippets
/* Background */
.element {
background-color: #CFB53B;
}
/* Text */
.element {
color: #CFB53B;
}
/* Border */
.element {
border: 1px solid #CFB53B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CFB53B,
#3B55CF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CFB53B,
#3B55CF
);
}
// SCSS variable
$old-gold: #CFB53B;
// With RGB channels (useful for rgba() usage)
$old-gold-r: 207;
$old-gold-g: 181;
$old-gold-b: 59;
// Usage
.element {
background-color: $old-gold;
color: rgba($old-gold-r, $old-gold-g, $old-gold-b, 0.8);
}