Copper Rose

HEX: #996666 | Modern Palette

On White
4.72:1
PASS
On Black
4.45:1
FAIL

Color Specifications

HEX
#996666
RGB
153, 102, 102
HSL
0°, 33% ,60%
CMYK
0, 33.33, 33.33, 40

About Copper Rose

Copper Rose (#996666) is a color with RGB(153, 102, 102) and HSL(0°, 33.33%, 60%). In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is Desaturated Cyan (#669999), which creates strong contrast. Its triadic palette includes #669966 and Dark Blue-gray (#666699). The name comes from Copper Rose (English).

  • HEX: #996666
  • RGB: 153, 102, 102
  • HSL: 0°, 33.33%, 60%
  • Style: Muted, Warm
  • Use case: Text, Print
  • Complementary color: Desaturated Cyan (#669999)
  • Triadic colors: #669966, Dark Blue-gray (#666699)
  • The name comes from Copper Rose (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 #996666 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Muted Warm
Use case
Text Print

Accessibility Simulation

Deuteranopia #787865
Protanopia #6D6D66
Tritanopia #996666
Achromatopsia #737373

Frequently Asked Questions

Copper Rose (#996666) is a color with RGB(153, 102, 102) and HSL(0°, 33.33%, 60%).

#996666 pairs strongly with Desaturated Cyan (#669999) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#996666 is suitable for Text, Print and works well with Muted, Warm styles.

The name Copper Rose is linked to Copper Rose from English, meaning A reddish-brown color, reminiscent of the metal copper and the flower rose..

Name, History & Etymology

Origin Word Copper Rose
Meaning A reddish-brown color, reminiscent of the metal copper and the flower rose.
Language English
First Recorded Use Late 19th - Early 20th Century (as a named color)

History

The color 'Copper Rose' combines the earthy, metallic warmth of copper with the soft, often pinkish or reddish hues associated with roses. Copper itself has been used for millennia, and its distinctive reddish-brown sheen has long been admired. Roses, similarly, have been cultivated for thousands of years and are known for their wide range of colors, including various shades of red and pink. The combination 'Copper Rose' specifically evokes a muted, sophisticated reddish-brown with a hint of pink or a metallic luster. Its popularity has fluctuated, often seeing resurgence during periods that favor natural, earthy, or vintage aesthetics. It's a common color in makeup (especially eyeshadows and lipsticks), textiles, and home decor.

First Recorded Use

While 'copper' and 'rose' have existed as color descriptors for centuries, the specific compound 'Copper Rose' as a distinct color name likely emerged in the late 19th or early 20th century, particularly with the rise of standardized color charts in fashion, interior design, and cosmetics. Earlier uses might be more descriptive phrases rather than a specific color name.

Cultural Associations

Culturally, copper is often associated with warmth, durability, and sometimes prosperity or healing. Roses symbolize love, beauty, and passion. 'Copper Rose' therefore carries connotations of warm beauty, natural elegance, and a touch of vintage charm. It's a versatile color that can be seen as both rustic and refined, depending on its application and accompanying colors. It often appears in autumn palettes due to its earthy tones but can also be used to add warmth to spring and summer designs.

Similar Named Colors

Rose Taupe #905D5D ΔE 3.45
Dark Chestnut #986960 ΔE 4.06
Copper Penny #AD6F69 ΔE 5.79
Mauve Taupe #915F6D ΔE 6.13

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #996666,
        #77BBBB
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #996666,
        #77BBBB
    );
}

// SCSS variable
$copper-rose: #996666;

// With RGB channels (useful for rgba() usage)
$copper-rose-r: 153;
$copper-rose-g: 102;
$copper-rose-b: 102;

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