Old Rose

HEX: #C08081 | Modern Palette

On White
3.16:1
FAIL
On Black
6.65:1
PASS

Color Specifications

HEX
#C08081
RGB
192, 128, 129
HSL
359°, 33% ,62%
CMYK
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

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

Color Characteristics

Mood
Style
Muted Warm
Use case
Text Print

Accessibility Simulation

Deuteranopia #96967F
Protanopia #898981
Tritanopia #C08080
Achromatopsia #919191

Frequently Asked Questions

Old Rose (#C08081) is a color with RGB(192, 128, 129) and HSL(359.1°, 33.7%, 62.7%).

#C08081 pairs strongly with #80C0BF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#C08081 is suitable for Text, Print and works well with Muted, Warm styles.

The name Old Rose is linked to Old Rose from English, meaning A color name referring to a muted, dusty pink or rose shade, often associated with the color of dried rose petals or antique fabrics..

Name, History & Etymology

Origin Word Old Rose
Meaning A color name referring to a muted, dusty pink or rose shade, often associated with the color of dried rose petals or antique fabrics.
Language English
First Recorded Use Late 19th Century

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.

Similar Named Colors

New York Pink #D7837F ΔE 5.18
Rosy Brown #BC8F8F ΔE 5.47
Rose Gold #B76E79 ΔE 6.21
Turkish Rose #B57281 ΔE 6.53

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);
}