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
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 #C08081 from deepest shade to lightest tint.
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);
}