Medium Orchid
HEX: #BA55D3 | Modern Palette
Color Specifications
#BA55D3
186, 85, 211
288°, 58% ,58%
12, 60, 0, 17
About Medium Orchid
Medium Orchid (#BA55D3) is a color with RGB(186, 85, 211) and HSL(288.1°, 58.9%, 58%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #6ED355, which creates strong contrast. Its triadic palette includes #D3BA55 and #55D3BA. The name comes from Medium Orchid (English).
- HEX: #BA55D3
- RGB: 186, 85, 211
- HSL: 288.1°, 58.9%, 58%
- Mood: Romantic
- Use case: Text, Button, Logo
- Complementary color: #6ED355
- Triadic colors: #D3BA55, #55D3BA
- The name comes from Medium Orchid (English).
Live Components
Color Palettes
Medium Orchid #BA55D3 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Medium Orchid #BA55D3 pairs with #6ED355 as its complementary color, and #D3BA55 and #55D3BA in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'orchid' as a color name dates back to at least 1915, referring to the pale purple-pink color of some orchid flowers. 'Medium Orchid' is a more specific descriptor within the spectrum of orchid colors, indicating a particular intensity. Its standardization as an X11 color (with hexadecimal value #BA55D3) cemented its identity and widespread use in digital contexts. X11 color names were a set of 763 colors that were part of the X Window System, a display system for bitmap displays.
First Recorded Use
The specific color name 'Medium Orchid' gained prominence with the advent of digital color systems and web standards. It was defined as an X11 color name, which were widely adopted in the late 1980s and early 1990s for computer displays.
Cultural Associations
Orchid flowers themselves often symbolize love, beauty, luxury, and strength. As a color, 'Medium Orchid' carries some of these connotations, being a vibrant yet not overly aggressive shade of purple. Purple, in general, has historical associations with royalty, nobility, and spirituality. In modern digital culture, it's simply one of many recognized colors available for design and display.
Code Snippets
/* Background */
.element {
background-color: #BA55D3;
}
/* Text */
.element {
color: #BA55D3;
}
/* Border */
.element {
border: 1px solid #BA55D3;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BA55D3,
#6ED355
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BA55D3,
#6ED355
);
}
// SCSS variable
$medium-orchid: #BA55D3;
// With RGB channels (useful for rgba() usage)
$medium-orchid-r: 186;
$medium-orchid-g: 85;
$medium-orchid-b: 211;
// Usage
.element {
background-color: $medium-orchid;
color: rgba($medium-orchid-r, $medium-orchid-g, $medium-orchid-b, 0.8);
}