Gold Fusion
HEX: #85754E | Modern Palette
Color Specifications
#85754E
133, 117, 78
42°, 41% ,52%
0, 12.03, 41.35, 47.84
About Gold Fusion
Gold Fusion (#85754E) is a color with RGB(133, 117, 78) and HSL(42.55°, 41.35%, 52.16%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #4E5E85, which creates strong contrast. Its triadic palette includes #4E8575 and #754E85. The name comes from Gold Fusion (English).
- HEX: #85754E
- RGB: 133, 117, 78
- HSL: 42.55°, 41.35%, 52.16%
- Mood: Earthy
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #4E5E85
- Triadic colors: #4E8575, #754E85
- The name comes from Gold Fusion (English).
Live Components
Color Palettes
Gold Fusion #85754E is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Gold Fusion #85754E pairs with #4E5E85 as its complementary color, and #4E8575 and #754E85 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'fusion' became popular in various fields (e.g., 'fusion cuisine,' 'fusion music') to describe the blending of distinct elements into a harmonious whole. When applied to colors, 'fusion' often implies a complex, multi-tonal, or iridescent quality that goes beyond a simple primary or secondary color. 'Gold Fusion' specifically suggests a golden base that has been 'fused' with other tones, likely browns, grays, or even subtle greens, to create a sophisticated, muted, or antique gold appearance, rather than a bright, pure yellow-gold. The hex code #85754e is a desaturated, somewhat brownish-gold, aligning with this 'fused' or complex gold concept.
First Recorded Use
The exact first use of 'Gold Fusion' as a specific color name is difficult to pinpoint without proprietary color naming databases. However, the concept of 'fusion' in product naming, especially for colors and materials, gained significant traction from the late 20th century onwards, particularly in cosmetics, automotive, and interior design, to denote sophisticated blends or advanced materials. The hex code #85754e itself would have been defined with the advent of digital color systems.
Cultural Associations
Gold, universally, symbolizes wealth, luxury, divinity, and prestige. The 'fusion' aspect adds a layer of modernity and complexity, suggesting a refined taste that appreciates nuanced shades over overt opulence. In design, 'Gold Fusion' might be used to evoke a sense of understated luxury, vintage elegance, or a natural, earthy richness, making it suitable for high-end products, sophisticated interiors, or fashion that aims for a classic yet contemporary feel. It avoids the brashness of pure gold, offering a more mature and versatile alternative.
Code Snippets
/* Background */
.element {
background-color: #85754E;
}
/* Text */
.element {
color: #85754E;
}
/* Border */
.element {
border: 1px solid #85754E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#85754E,
#5370B7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#85754E,
#5370B7
);
}
// SCSS variable
$gold-fusion: #85754E;
// With RGB channels (useful for rgba() usage)
$gold-fusion-r: 133;
$gold-fusion-g: 117;
$gold-fusion-b: 78;
// Usage
.element {
background-color: $gold-fusion;
color: rgba($gold-fusion-r, $gold-fusion-g, $gold-fusion-b, 0.8);
}