French Puce
HEX: #4E1609 | Modern Palette
Color Specifications
#4E1609
78, 22, 9
11°, 88% ,30%
0, 71.79, 88.46, 69.41
About French Puce
French Puce (#4E1609) is a color with RGB(78, 22, 9) and HSL(11.3°, 88.46%, 30.59%). It is commonly associated with Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #09414E, which creates strong contrast. Its triadic palette includes #094E16 and #16094E. The name comes from puce (French).
- HEX: #4E1609
- RGB: 78, 22, 9
- HSL: 11.3°, 88.46%, 30.59%
- Mood: Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #09414E
- Triadic colors: #094E16, #16094E
- The name comes from puce (French).
Live Components
Color Palettes
French Puce #4E1609 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
French Puce #4E1609 pairs with #09414E as its complementary color, and #094E16 and #16094E in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The color's name emerged from the observation of the dark, reddish-brown hue of a crushed flea. Its initial popularity in the late 18th century was a direct result of royal endorsement, quickly becoming a fashionable shade for textiles and garments. While its peak popularity was during the Ancien Régime, 'puce' has periodically reappeared in fashion and design, often associated with vintage or historical aesthetics. The color's precise shade has varied over time, but it consistently denotes a deep, muted reddish-brown.
First Recorded Use
The term 'puce' gained significant popularity in France around 1775, reportedly after Marie Antoinette wore a dress of this color, prompting a widespread fashion trend.
Cultural Associations
The association with Marie Antoinette cemented 'puce' as a color of aristocratic fashion during the late 18th century. Its somewhat unusual and visceral origin story adds a layer of intrigue to its historical perception. Despite its humble etymology, the color has often been perceived as sophisticated and subtly rich.
Code Snippets
/* Background */
.element {
background-color: #4E1609;
}
/* Text */
.element {
color: #4E1609;
}
/* Border */
.element {
border: 1px solid #4E1609;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4E1609,
#097993
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4E1609,
#097993
);
}
// SCSS variable
$french-puce: #4E1609;
// With RGB channels (useful for rgba() usage)
$french-puce-r: 78;
$french-puce-g: 22;
$french-puce-b: 9;
// Usage
.element {
background-color: $french-puce;
color: rgba($french-puce-r, $french-puce-g, $french-puce-b, 0.8);
}