Medium Orchid

HEX: #BA55D3 | Modern Palette

On White
3.94:1
FAIL
On Black
5.33:1
PASS

Color Specifications

HEX
#BA55D3
RGB
186, 85, 211
HSL
288°, 58% ,58%
CMYK
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

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

Color Characteristics

Mood
Romantic
Style
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #7E7ED2
Protanopia #6767D3
Tritanopia #AD7070
Achromatopsia #808080

Frequently Asked Questions

Medium Orchid (#BA55D3) is a color with RGB(186, 85, 211) and HSL(288.1°, 58.9%, 58%).

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

#BA55D3 is suitable for Text, Button, Logo.

#BA55D3 is commonly associated with Romantic.

The name Medium Orchid is linked to Medium Orchid from English, meaning A moderate shade of purple, specifically a color named after the orchid flower..

Name, History & Etymology

Origin Word Medium Orchid
Meaning A moderate shade of purple, specifically a color named after the orchid flower.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Rich Lilac #B666D2 ΔE 3.64
Deep Fuchsia #C154C1 ΔE 3.82
Steel Pink #CC33CC ΔE 5.24
Rich Lavender #A76BCF ΔE 5.65

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