Deep Puce

HEX: #A95C68 | Modern Palette

On White
4.75:1
PASS
On Black
4.42:1
FAIL

Color Specifications

HEX
#A95C68
RGB
169, 92, 104
HSL
350°, 45% ,66%
CMYK
0, 45.56, 38.46, 33.73

About Deep Puce

Deep Puce (#A95C68) is a color with RGB(169, 92, 104) and HSL(350.65°, 45.56%, 66.27%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #5CA99D, which creates strong contrast. Its triadic palette includes #68A95C and #5C68A9. The name comes from puce (French).

  • HEX: #A95C68
  • RGB: 169, 92, 104
  • HSL: 350.65°, 45.56%, 66.27%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Logo
  • Complementary color: #5CA99D
  • Triadic colors: #68A95C, #5C68A9
  • The name comes from puce (French).

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

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #797966
Protanopia #686868
Tritanopia #A85E5E
Achromatopsia #737373

Frequently Asked Questions

Deep Puce (#A95C68) is a color with RGB(169, 92, 104) and HSL(350.65°, 45.56%, 66.27%).

#A95C68 pairs strongly with #5CA99D as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#A95C68 is suitable for Text, Button, Logo and works well with Warm styles.

#A95C68 is commonly associated with Romantic.

The name Deep Puce is linked to puce from French, meaning flea.

Name, History & Etymology

Origin Word puce
Meaning flea
Language French
First Recorded Use 18th Century

History

The color 'puce' gained notoriety in France during the reign of Louis XVI. Legend has it that Queen Marie Antoinette wore a dress of this brownish-red hue, and when asked about its color, she declared it 'couleur puce' (flea color). This sparked a trend, and the color became fashionable. Over time, variations like 'deep puce' emerged to describe darker, more saturated versions of the original color. The hexadecimal #a95c68 represents a specific, darker shade within the puce spectrum.

First Recorded Use

The color 'puce' is said to have been named in 1775, after Marie Antoinette's dress, which was the color of a flea. The 'deep' modifier is a later descriptive addition.

Cultural Associations

The naming of 'puce' after a flea might seem unusual today, but it was not uncommon for colors to be named after natural objects, even insects, during that period. The association with Marie Antoinette gives it a historical and aristocratic, albeit somewhat morbid, charm. It's a color that evokes a sense of vintage elegance and a touch of the unconventional.

Similar Named Colors

Popstar #BE4F62 ΔE 5.15
China Rose #A8516E ΔE 5.47
Rose Vale #AB4E52 ΔE 6.10
English Red #AB4B52 ΔE 6.14

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #A95C68,
        #82D0C4
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #A95C68,
        #82D0C4
    );
}

// SCSS variable
$deep-puce: #A95C68;

// With RGB channels (useful for rgba() usage)
$deep-puce-r: 169;
$deep-puce-g: 92;
$deep-puce-b: 104;

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