Chinese Violet

HEX: #856088 | Modern Palette

On White
5.22:1
PASS
On Black
4.03:1
FAIL

Color Specifications

HEX
#856088
RGB
133, 96, 136
HSL
295°, 29% ,53%
CMYK
2.21, 29.41, 0, 46.67

About Chinese Violet

Chinese Violet (#856088) is a color with RGB(133, 96, 136) and HSL(295.5°, 29.41%, 53.33%). In design, it fits Muted styles and is suitable for Text, Border, Print. Its complementary color is #638860, which creates strong contrast. Its triadic palette includes #888560 and #608885. The name comes from Chinese Violet (English).

  • HEX: #856088
  • RGB: 133, 96, 136
  • HSL: 295.5°, 29.41%, 53.33%
  • Style: Muted
  • Use case: Text, Border, Print
  • Complementary color: #638860
  • Triadic colors: #888560, #608885
  • The name comes from Chinese Violet (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 #856088 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Muted
Use case
Text Border Print

Accessibility Simulation

Deuteranopia #6C6C87
Protanopia #656588
Tritanopia #806666
Achromatopsia #6C6C6C

Frequently Asked Questions

Chinese Violet (#856088) is a color with RGB(133, 96, 136) and HSL(295.5°, 29.41%, 53.33%).

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

#856088 is suitable for Text, Border, Print and works well with Muted styles.

The name Chinese Violet is linked to Chinese Violet from English, meaning A common name for the plant Asystasia gangetica ssp. micrantha, and sometimes for other plants with similar appearance or origin..

Name, History & Etymology

Origin Word Chinese Violet
Meaning A common name for the plant Asystasia gangetica ssp. micrantha, and sometimes for other plants with similar appearance or origin.
Language English
First Recorded Use Late 19th to Early 20th Century

History

The plant commonly known as 'Chinese Violet' (Asystasia gangetica ssp. micrantha) is native to tropical Africa and Asia, including parts of China. It was introduced to many parts of the world as an ornamental plant due to its attractive, small, trumpet-shaped flowers, often in shades of white, lavender, or purple. Over time, it naturalized in many regions and is now considered an invasive species in some areas, particularly in the Americas and Pacific islands. The common name likely emerged as the plant gained popularity in Western horticulture, needing a simple, descriptive name for gardeners and enthusiasts. The 'violet' part is a common descriptor for small, often purple flowers, and 'Chinese' was a frequent geographical tag for plants originating from or popularized in East Asia during that era of botanical exploration and trade.

First Recorded Use

The exact first use is difficult to pinpoint, but botanical records and horticultural texts from the late 19th and early 20th centuries show the increasing use of common names for plants introduced from Asia. The 'violet' part likely refers to the flower's resemblance to true violets (genus Viola) in shape or color, while 'Chinese' indicates its perceived origin or prevalence in Chinese horticulture, even if its native range is broader.

Cultural Associations

In some cultures where it has naturalized, it is seen as a weed due to its rapid growth and ability to outcompete native vegetation. However, in its native range and in some horticultural contexts, it is appreciated for its beauty and hardiness. It is also known to be a nectar source for butterflies and other pollinators. There isn't extensive specific cultural folklore tied directly to the 'Chinese Violet' common name itself, but rather to the plant species it represents, which varies by region.

Similar Named Colors

French Lilac #86608E ΔE 1.70
Antique Fuchsia #915C83 ΔE 4.03
Razzmic Berry #8D4E85 ΔE 6.34
Plum #8E4585 ΔE 8.72

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #856088,
        #6AAB65
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #856088,
        #6AAB65
    );
}

// SCSS variable
$chinese-violet: #856088;

// With RGB channels (useful for rgba() usage)
$chinese-violet-r: 133;
$chinese-violet-g: 96;
$chinese-violet-b: 136;

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