Pale Gold

HEX: #E6BE8A | Modern Palette

On White
1.74:1
FAIL
On Black
12.10:1
PASS

Color Specifications

HEX
#E6BE8A
RGB
230, 190, 138
HSL
33°, 64% ,72%
CMYK
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

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

Color Characteristics

Mood
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #CBCB88
Protanopia #C3C38A
Tritanopia #EAB8B8
Achromatopsia #C4C4C4

Frequently Asked Questions

Pale Gold (#E6BE8A) is a color with RGB(230, 190, 138) and HSL(33.9°, 64.8%, 72.2%).

#E6BE8A pairs strongly with #8AB2E6 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#E6BE8A is suitable for Text, Button, Accent and works well with Warm styles.

The name Pale Gold is linked to Pale Gold from English, meaning A light, subdued shade of gold, often described as having a yellowish-brown or creamy undertone..

Name, History & Etymology

Origin Word Pale Gold
Meaning A light, subdued shade of gold, often described as having a yellowish-brown or creamy undertone.
Language English
First Recorded Use Late 19th - Early 20th Century (as a specific color name)

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.

Similar Named Colors

Burlywood #DEB887 ΔE 1.76
Tan #D2B48C ΔE 4.58
Peach-orange #FFCC99 ΔE 5.12
Champagne #FAD6A5 ΔE 5.70

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