Chinese Violet
HEX: #856088 | Modern Palette
Color Specifications
#856088
133, 96, 136
295°, 29% ,53%
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
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 #856088 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}