Pale Copper

HEX: #DA8A67 | Modern Palette

On White
2.69:1
FAIL
On Black
7.81:1
PASS

Color Specifications

HEX
#DA8A67
RGB
218, 138, 103
HSL
18°, 60% ,62%
CMYK
0, 37, 53, 15

About Pale Copper

Pale Copper (#DA8A67) is a color with RGB(218, 138, 103) and HSL(18.3°, 60.8%, 62.9%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #67B7DA, which creates strong contrast. Its triadic palette includes #67DA8A and #8A67DA. The name comes from Pale Copper (English).

  • HEX: #DA8A67
  • RGB: 218, 138, 103
  • HSL: 18.3°, 60.8%, 62.9%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #67B7DA
  • Triadic colors: #67DA8A, #8A67DA
  • The name comes from Pale Copper (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 #DA8A67 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A7A763
Protanopia #969668
Tritanopia #DC8686
Achromatopsia #9E9E9E

Frequently Asked Questions

Pale Copper (#DA8A67) is a color with RGB(218, 138, 103) and HSL(18.3°, 60.8%, 62.9%).

#DA8A67 pairs strongly with #67B7DA as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#DA8A67 is commonly associated with Romantic.

The name Pale Copper is linked to Pale Copper from English, meaning A light, reddish-brown color, reminiscent of oxidized copper or a lighter shade of the metal..

Name, History & Etymology

Origin Word Pale Copper
Meaning A light, reddish-brown color, reminiscent of oxidized copper or a lighter shade of the metal.
Language English
First Recorded Use 18th Century

History

The word 'pale' comes from Old French 'pale' (meaning 'pale, stakes, fence'), ultimately from Latin 'pallidus' ('pale, pallid'). 'Copper' derives from Old English 'coper', from Latin 'cuprum', which itself comes from 'Cyprium aes' meaning 'Cyprian metal' (Cyprus being a major source of copper in antiquity). The combination 'Pale Copper' describes a color that is lighter than typical copper, often with a slightly more orange or pinkish undertone, or the appearance of copper that has begun to oxidize to a lighter, less vibrant state. It has been used in various contexts, including descriptions of hair color, textiles, and artistic palettes.

First Recorded Use

The specific compound 'Pale Copper' as a color name likely emerged as descriptive language became more nuanced, particularly in art, fashion, and natural sciences. While 'pale' and 'copper' have much older origins, their combination to denote a specific hue would have solidified as color naming conventions evolved. Evidence suggests increased specificity in color naming during the 18th and 19th centuries.

Cultural Associations

The color 'copper' itself has strong cultural associations with warmth, conductivity, durability, and antiquity. 'Pale Copper' might evoke a sense of aged elegance, a softer metallic sheen, or a natural, earthy tone. It can be seen in traditional pottery, certain types of natural dyes, and in the depiction of natural elements like autumn leaves or specific rock formations. In fashion and interior design, it offers a sophisticated alternative to brighter oranges or browns, providing a subtle metallic warmth.

Similar Named Colors

Raw Sienna #D68A59 ΔE 4.54
Dark Salmon #E9967A ΔE 4.63
Antique Brass #CD9575 ΔE 5.28
Persian Orange #D99058 ΔE 6.80

Code Snippets

/* Background */
.element {
    background-color: #DA8A67;
}

/* Text */
.element {
    color: #DA8A67;
}

/* Border */
.element {
    border: 1px solid #DA8A67;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #DA8A67,
        #67B7DA
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #DA8A67,
        #67B7DA
    );
}

// SCSS variable
$pale-copper: #DA8A67;

// With RGB channels (useful for rgba() usage)
$pale-copper-r: 218;
$pale-copper-g: 138;
$pale-copper-b: 103;

// Usage
.element {
    background-color: $pale-copper;
    color: rgba($pale-copper-r, $pale-copper-g, $pale-copper-b, 0.8);
}