Old Rose
HEX: #C08081 | Modern Palette
Color Specifications
#C08081
192, 128, 129
359°, 33% ,62%
0, 33, 33, 25
About Old Rose
Old Rose (#C08081) is a color with RGB(192, 128, 129) and HSL(359.1°, 33.7%, 62.7%). In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #80C0BF, which creates strong contrast. Its triadic palette includes #81C080 and #8081C0. The name comes from Old Rose (English).
- HEX: #C08081
- RGB: 192, 128, 129
- HSL: 359.1°, 33.7%, 62.7%
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #80C0BF
- Triadic colors: #81C080, #8081C0
- The name comes from Old Rose (English).
Live Components
Color Palettes
Old Rose #C08081 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
Old Rose #C08081 pairs with #80C0BF as its complementary color, and #81C080 and #8081C0 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 'Old Rose' emerged during a period when there was a growing appreciation for muted and complex color palettes, moving away from some of the brighter, more saturated dyes of earlier industrialization. It became a staple in Victorian and Edwardian aesthetics, reflecting a taste for the past, romance, and understated elegance. It was widely used in textiles, wallpapers, and ceramics. Its popularity has seen resurgences throughout the 20th and 21st centuries, often associated with vintage, shabby chic, or romantic styles.
First Recorded Use
The term 'Old Rose' as a specific color name gained popularity in the late 19th century, particularly in fashion and interior design. While rose colors existed before, 'Old Rose' specifically denotes a more subdued, vintage tone.
Cultural Associations
Culturally, 'Old Rose' is often associated with nostalgia, romance, femininity, and a sense of history or antiquity. It evokes images of dried flowers, vintage lace, and classic interiors. It's less vibrant than a true pink or red, giving it a sophisticated and somewhat melancholic quality. It has been a popular choice for bridal wear, home decor, and fashion for those seeking a soft, timeless aesthetic.
Code Snippets
/* Background */
.element {
background-color: #C08081;
}
/* Text */
.element {
color: #C08081;
}
/* Border */
.element {
border: 1px solid #C08081;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C08081,
#80C0BF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C08081,
#80C0BF
);
}
// SCSS variable
$old-rose: #C08081;
// With RGB channels (useful for rgba() usage)
$old-rose-r: 192;
$old-rose-g: 128;
$old-rose-b: 129;
// Usage
.element {
background-color: $old-rose;
color: rgba($old-rose-r, $old-rose-g, $old-rose-b, 0.8);
}