#C86DFD Medium Orchid

rgb(200, 109, 253)

Color conversions

HEX
#C86DFD
RGB
rgb(200, 109, 253)
RGBA
rgba(200, 109, 253, 1)
HSL
hsl(278, 97%, 71%)
HSV / HSB
hsv(278, 57%, 99%)
CMYK
cmyk(21%, 57%, 0%, 1%)

Wide-gamut spaces

XYZ
xyz(47.014, 30.31, 96.283)
LAB
lab(61.92 59.56 -57.62)
LCH
lch(61.92 82.87 315.95)
OKLAB
oklab(69.71% 0.1418 -0.1618)
OKLCH
oklch(69.71% 0.2151 311.22)
Nearest name
Medium Orchid

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#c86dfd1a

#c86dfd33

#c86dfd4d

#c86dfd66

#c86dfd80

#c86dfd99

#c86dfdb3

#c86dfdcc

#c86dfde6

#c86dfdff

Accessibility and contrast

On white

2.97:1

Body text Fail · Large text Fail

On black

7.06:1

Body text AAA · Large text AA

White-on-color contrast is 2.97:1.

Color blindness preview

Protanopia

No red cones — ~1% of men

Protanomaly

Reduced red sensitivity — ~1% of men

Deuteranopia

No green cones — ~1% of men

Deuteranomaly

Reduced green sensitivity — ~5% of men

Tritanopia

No blue cones — very rare

Tritanomaly

Reduced blue sensitivity — very rare

Achromatopsia

No color perception — ~1 in 30,000

Achromatomaly

Partial color perception — rare

Meaning, psychology and brand usage

Craft, imagination, and modern premium

Violet reads as creative and considered. Because it is rare in nature it feels designed rather than found, which is why it has become the signature of developer tooling and creative software over the last decade.

Royalty and luxury in Western markets, mourning in Catholic tradition and parts of Latin America, and spirituality across several Eastern traditions.

Tyrian purple was extracted from murex sea snails at roughly 250,000 shells per gram, restricting it to emperors by law. Perkin's accidental synthesis of mauveine in 1856 launched the entire synthetic dye industry.

Strong for creative tools, beauty, and premium subscriptions. Keep the surrounding neutrals genuinely neutral — violet plus warm gray quickly reads dated.

Common industries: Creative software, Beauty, Education, Streaming, Web3. Pairs well with lime for a sharp accent, warm white for softness, near-black for luxury.

Code exports

CSS

:root {
  --color-medium-orchid: #c86dfd;
  --color-medium-orchid-rgb: 200 109 253;
  --color-medium-orchid-hsl: 278 97% 71%;
  --color-medium-orchid-oklch: 69.71% 0.2151 311.22;
}

.element {
  color: #c86dfd;
  background-color: hsl(278, 97%, 71%);
  border: 1px solid rgb(200 109 253 / 40%);
}

SCSS

$medium-orchid: #c86dfd;
$medium-orchid-light: #e4b6fe;
$medium-orchid-dark: #64377f;

.element {
  color: $medium-orchid;
  background: rgba($medium-orchid, 0.12);

  &:hover {
    color: darken($medium-orchid, 8%);
  }
}

LESS

@medium-orchid: #c86dfd;
@medium-orchid-light: lighten(@medium-orchid, 12%);
@medium-orchid-dark: darken(@medium-orchid, 12%);

.element {
  color: @medium-orchid;
  background: fade(@medium-orchid, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-medium-orchid-50: #f4e2ff;
  --color-medium-orchid-100: #efd3fe;
  --color-medium-orchid-200: #e9c5fe;
  --color-medium-orchid-300: #dea7fe;
  --color-medium-orchid-400: #d38afd;
  --color-medium-orchid-500: #c86dfd;
  --color-medium-orchid-600: #b462e4;
  --color-medium-orchid-700: #8c4cb1;
  --color-medium-orchid-800: #64377f;
  --color-medium-orchid-900: #3c214c;
}

/* Usage */
<div class="bg-medium-orchid-500 text-medium-orchid-50 ring-medium-orchid-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#c86dfd]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$medium-orchid: #c86dfd;
$primary: $medium-orchid;

$theme-colors: map-merge($theme-colors, (
  "medium-orchid": $medium-orchid
));

// Generates .text-medium-orchid, .bg-medium-orchid, .btn-medium-orchid
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color mediumOrchid = Color(0xFFC86DFD);

// As a MaterialColor swatch
const MaterialColor mediumOrchidSwatch = MaterialColor(0xFFC86DFD, <int, Color>{
  50: Color(0xFFF4E2FF),
  100: Color(0xFFEFD3FE),
  200: Color(0xFFE9C5FE),
  300: Color(0xFFDEA7FE),
  400: Color(0xFFD38AFD),
  500: Color(0xFFC86DFD),
  600: Color(0xFFB462E4),
  700: Color(0xFF8C4CB1),
  800: Color(0xFF64377F),
  900: Color(0xFF3C214C),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #c86dfd — Medium Orchid
    static let mediumOrchid = Color(
        red: 0.7843,
        green: 0.4275,
        blue: 0.9922
    )
}

// UIKit
extension UIColor {
    static let mediumOrchid = UIColor(
        red: 0.7843,
        green: 0.4275,
        blue: 0.9922,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="medium_orchid">#C86DFD</color>
    <color name="medium_orchid_translucent">#80C86DFD</color>
</resources>

<!-- Jetpack Compose -->
val MediumOrchid = Color(0xFFC86DFD)

JavaScript

export const MEDIUM_ORCHID = {
  hex: "#c86dfd",
  rgb: [200, 109, 253],
  hsl: [278, 97, 71],
  oklch: "oklch(69.71% 0.2151 311.22)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "medium-orchid": {
    "$type": "color",
    "$value": "#c86dfd",
    "$description": "Medium Orchid — generated by ColorVerse AI"
  }
}