Dark Puce

HEX: #4F3A3C | Modern Palette

On White
10.48:1
PASS
On Black
2.00:1
FAIL

Color Specifications

HEX
#4F3A3C
RGB
79, 58, 60
HSL
354°, 26% ,30%
CMYK
0, 26.58, 24.05, 69.02

About Dark Puce

Dark Puce (#4F3A3C) is a color with RGB(79, 58, 60) and HSL(354.29°, 26.58%, 30.98%). In design, it fits Muted, Warm styles and is suitable for Text, Border, Print. Its complementary color is #3A4F4D, which creates strong contrast. Its triadic palette includes #3C4F3A and #3A3C4F. The name comes from puce (French).

  • HEX: #4F3A3C
  • RGB: 79, 58, 60
  • HSL: 354.29°, 26.58%, 30.98%
  • Style: Muted, Warm
  • Use case: Text, Border, Print
  • Complementary color: #3A4F4D
  • Triadic colors: #3C4F3A, #3A3C4F
  • 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 #4F3A3C from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Muted Warm
Use case
Text Border Print

Accessibility Simulation

Deuteranopia #41413B
Protanopia #3D3D3C
Tritanopia #4F3A3A
Achromatopsia #3F3F3F

Frequently Asked Questions

Dark Puce (#4F3A3C) is a color with RGB(79, 58, 60) and HSL(354.29°, 26.58%, 30.98%).

#4F3A3C pairs strongly with #3A4F4D as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#4F3A3C is suitable for Text, Border, Print and works well with Muted, Warm styles.

The name Dark 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 and Marie Antoinette. Legend has it that Marie Antoinette wore a dress of this color, and when asked what color it was, she replied 'couleur puce' (flea color). This sparked a trend, and the color became fashionable. 'Dark Puce' is a modern descriptor for a deeper, less reddish, and more muted version of the original puce, which itself can vary. The hexadecimal #4f3a3c represents a very dark, desaturated reddish-brown or purplish-brown, aligning with a 'dark puce' interpretation.

First Recorded Use

The color 'puce' is said to have been named in the late 18th century, specifically around 1778-1779, in reference to the color of a flea. The 'Dark Puce' variation would have emerged later as a descriptor for a deeper shade of this color.

Cultural Associations

The original 'puce' color was often associated with a somewhat morbid or unusual sense of fashion, given its origin. While not as widely recognized as primary colors, 'puce' and its variations like 'Dark Puce' are part of a broader palette of descriptive color names that evoke specific, often natural, imagery. It's less common in modern mainstream fashion but can be found in more sophisticated or vintage-inspired palettes.

Similar Named Colors

Old Burgundy #43302E ΔE 4.22
Dark Liver (horses) #543D37 ΔE 4.45
Purple Taupe #50404D ΔE 6.09
Rose Ebony #674846 ΔE 6.76

Code Snippets

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

/* Text */
.element {
    color: #4F3A3C;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #4F3A3C,
        #3A6460
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #4F3A3C,
        #3A6460
    );
}

// SCSS variable
$dark-puce: #4F3A3C;

// With RGB channels (useful for rgba() usage)
$dark-puce-r: 79;
$dark-puce-g: 58;
$dark-puce-b: 60;

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