Dark Puce
HEX: #4F3A3C | Modern Palette
Color Specifications
#4F3A3C
79, 58, 60
354°, 26% ,30%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}