China Rose

HEX: #A8516E | Modern Palette

On White
5.16:1
PASS
On Black
4.07:1
FAIL

Color Specifications

HEX
#A8516E
RGB
168, 81, 110
HSL
340°, 51% ,65%
CMYK
0, 51.79, 34.52, 34.12

About China Rose

China Rose (#A8516E) is a color with RGB(168, 81, 110) and HSL(340°, 51.79%, 65.88%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #51A88B, which creates strong contrast. Its triadic palette includes #6EA851 and #516EA8. The name comes from China Rose (English (common name)).

  • HEX: #A8516E
  • RGB: 168, 81, 110
  • HSL: 340°, 51.79%, 65.88%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Logo
  • Complementary color: #51A88B
  • Triadic colors: #6EA851, #516EA8
  • The name comes from China Rose (English (common name)).

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

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #73736C
Protanopia #60606E
Tritanopia #A65555
Achromatopsia #6D6D6D

Frequently Asked Questions

China Rose (#A8516E) is a color with RGB(168, 81, 110) and HSL(340°, 51.79%, 65.88%).

#A8516E pairs strongly with #51A88B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#A8516E is suitable for Text, Button, Logo and works well with Warm styles.

#A8516E is commonly associated with Romantic.

The name China Rose is linked to China Rose from English (common name), meaning A rose variety originating from China.

Name, History & Etymology

Origin Word China Rose
Meaning A rose variety originating from China
Language English (common name)
First Recorded Use Late 18th - Early 19th Century

History

China Roses (primarily Rosa chinensis and its early hybrids) were introduced to Europe from China in the late 18th and early 19th centuries. Unlike European roses, they bloomed repeatedly throughout the growing season and had a more delicate form. These characteristics revolutionized rose breeding, leading to the development of modern roses (Hybrid Perpetuals, Hybrid Teas, etc.) which inherited the remontancy (recurrent blooming) trait. Key introductions included 'Slater's Crimson China' (1792), 'Parson's Pink China' (1793), and 'Hume's Blush Tea-scented China' (1809).

First Recorded Use

The term 'China Rose' became widely used in Europe following the introduction of these roses from China, particularly species like Rosa chinensis, which significantly influenced modern rose breeding. Specific first documented use as a common name is difficult to pinpoint precisely but falls within this period of introduction and popularization.

Cultural Associations

In China, roses have been cultivated for thousands of years and hold symbolic meaning, often representing beauty, love, and prosperity. When introduced to the West, China Roses were highly prized for their continuous blooming, a novel trait that captivated gardeners and breeders. They symbolize a pivotal moment in horticultural exchange between East and West, fundamentally changing the landscape of rose cultivation globally. The color #a8516e itself evokes a deep, rich pink or reddish-purple, reminiscent of some of the vibrant hues found in these historic roses.

Similar Named Colors

Raspberry Rose #B3446C ΔE 3.38
Medium Ruby #AA4069 ΔE 4.05
Deep Puce #A95C68 ΔE 5.47
Fuchsia Rose #C74375 ΔE 6.16

Code Snippets

/* Background */
.element {
    background-color: #A8516E;
}

/* Text */
.element {
    color: #A8516E;
}

/* Border */
.element {
    border: 1px solid #A8516E;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #A8516E,
        #7BD5B7
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #A8516E,
        #7BD5B7
    );
}

// SCSS variable
$china-rose: #A8516E;

// With RGB channels (useful for rgba() usage)
$china-rose-r: 168;
$china-rose-g: 81;
$china-rose-b: 110;

// Usage
.element {
    background-color: $china-rose;
    color: rgba($china-rose-r, $china-rose-g, $china-rose-b, 0.8);
}