Copper Penny

HEX: #AD6F69 | Modern Palette

On White
4.00:1
FAIL
On Black
5.25:1
PASS

Color Specifications

HEX
#AD6F69
RGB
173, 111, 105
HSL
5°, 39% ,67%
CMYK
0, 35.84, 39.31, 32.16

About Copper Penny

Copper Penny (#AD6F69) is a color with RGB(173, 111, 105) and HSL(5.29°, 39.31%, 67.84%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #69A7AD, which creates strong contrast. Its triadic palette includes #69AD6F and #6F69AD. The name comes from Copper Penny (English).

  • HEX: #AD6F69
  • RGB: 173, 111, 105
  • HSL: 5.29°, 39.31%, 67.84%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Logo, Print
  • Complementary color: #69A7AD
  • Triadic colors: #69AD6F, #6F69AD
  • The name comes from Copper Penny (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 #AD6F69 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #858567
Protanopia #787869
Tritanopia #AD6E6E
Achromatopsia #7F7F7F

Frequently Asked Questions

Copper Penny (#AD6F69) is a color with RGB(173, 111, 105) and HSL(5.29°, 39.31%, 67.84%).

#AD6F69 pairs strongly with #69A7AD as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#AD6F69 is commonly associated with Romantic.

The name Copper Penny is linked to Copper Penny from English, meaning A small coin made primarily of copper, typically with a reddish-brown color..

Name, History & Etymology

Origin Word Copper Penny
Meaning A small coin made primarily of copper, typically with a reddish-brown color.
Language English
First Recorded Use 18th Century

History

The color 'Copper Penny' is directly inspired by the appearance of a newly minted or relatively clean copper one-cent coin (penny). Copper itself has been used for coinage for millennia, but the 'penny' as a unit of currency has a long history in various forms. The specific reddish-brown hue is characteristic of elemental copper when exposed to air, before significant oxidation (patination) turns it green or darker brown. The color name evokes a sense of warmth, metallic luster, and a touch of nostalgia for a common, tangible object.

First Recorded Use

The term 'copper penny' as a descriptor for a specific reddish-brown color likely emerged in common parlance as copper coinage became widespread and familiar. While copper coins existed much earlier, the specific phrase 'copper penny' to denote a color is harder to pinpoint precisely but aligns with the period when such coins were a common, everyday object for the general populace. The first official copper pennies in Great Britain were minted in 1797.

Cultural Associations

The 'penny' holds significant cultural weight in English-speaking countries, often associated with small value, good luck ('find a penny, pick it up...'), and everyday transactions. The color 'Copper Penny' therefore carries subtle connotations of familiarity, earthiness, and a certain humble charm. It's a popular color in fashion, interior design, and cosmetics for its warm, inviting, and slightly metallic quality. It can evoke autumn, rustic aesthetics, or vintage styles.

Similar Named Colors

Blast-off Bronze #A57164 ΔE 3.85
Dark Chestnut #986960 ΔE 5.55
Copper Rose #996666 ΔE 5.79
Rose Gold #B76E79 ΔE 6.65

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #AD6F69,
        #8DC8CD
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #AD6F69,
        #8DC8CD
    );
}

// SCSS variable
$copper-penny: #AD6F69;

// With RGB channels (useful for rgba() usage)
$copper-penny-r: 173;
$copper-penny-g: 111;
$copper-penny-b: 105;

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