Gold Fusion

HEX: #85754E | Modern Palette

On White
4.51:1
PASS
On Black
4.65:1
PASS

Color Specifications

HEX
#85754E
RGB
133, 117, 78
HSL
42°, 41% ,52%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #85754E from deepest shade to lightest tint.

Color Characteristics

Mood
Earthy
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #7A7A4D
Protanopia #77774E
Tritanopia #887171
Achromatopsia #767676

Frequently Asked Questions

Gold Fusion (#85754E) is a color with RGB(133, 117, 78) and HSL(42.55°, 41.35%, 52.16%).

#85754E pairs strongly with #4E5E85 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#85754E is suitable for Text, Logo, Print and works well with Warm styles.

#85754E is commonly associated with Earthy.

The name Gold Fusion is linked to Gold Fusion from English, meaning A combination of gold with another element or elements, often implying a process of merging or blending to create a new entity or enhanced property. In the context of a color, it suggests a golden hue with an underlying or overlaid tone that gives it a u….

Name, History & Etymology

Origin Word Gold Fusion
Meaning A combination of gold with another element or elements, often implying a process of merging or blending to create a new entity or enhanced property. In the context of a color, it suggests a golden hue with an underlying or overlaid tone that gives it a u…
Language English
First Recorded Use Late 20th Century - Early 21st Century

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.

Similar Named Colors

Shadow #8A795D ΔE 4.22
Dark Tan #918151 ΔE 5.05
French Bistre #856D4D ΔE 5.29
Spanish Bistre #807532 ΔE 6.89

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);
}