#CD73D7 Orchid

rgb(205, 115, 215)

Color conversions

HEX
#CD73D7
RGB
rgb(205, 115, 215)
RGBA
rgba(205, 115, 215, 1)
HSL
hsl(294, 56%, 65%)
HSV / HSB
hsv(294, 47%, 84%)
CMYK
cmyk(5%, 47%, 0%, 16%)

Wide-gamut spaces

XYZ
xyz(43.572, 30.149, 67.801)
LAB
lab(61.78 50.26 -36.68)
LCH
lch(61.78 62.22 323.88)
OKLAB
oklab(69.12% 0.1361 -0.1009)
OKLCH
oklch(69.12% 0.1695 323.44)
Nearest name
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

#cd73d71a

#cd73d733

#cd73d74d

#cd73d766

#cd73d780

#cd73d799

#cd73d7b3

#cd73d7cc

#cd73d7e6

#cd73d7ff

Accessibility and contrast

On white

2.99:1

Body text Fail · Large text Fail

On black

7.03:1

Body text AAA · Large text AA

White-on-color contrast is 2.99: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

Confident, contemporary, impossible to ignore

Magenta has no single wavelength — the brain constructs it — and that unusual quality is part of why it feels synthetic and current. It signals boldness and non-conformity without red's aggression.

Modernity, playfulness, and inclusivity in contemporary Western design; historically associated with fashion and print.

Named after the 1859 Battle of Magenta, the dye arrived alongside mauveine in the first wave of synthetic colours. It is one of the four process inks in CMYK printing.

Works as a high-impact accent or a brave primary in fashion, telecom, and culture. Needs generous white space; at scale it fatigues the eye quickly.

Common industries: Fashion, Telecom, Music, Culture, Beauty. Pairs well with deep indigo for depth, cream for softness, charcoal for editorial contrast.

Code exports

CSS

:root {
  --color-orchid: #cd73d7;
  --color-orchid-rgb: 205 115 215;
  --color-orchid-hsl: 294 56% 65%;
  --color-orchid-oklch: 69.12% 0.1695 323.44;
}

.element {
  color: #cd73d7;
  background-color: hsl(294, 56%, 65%);
  border: 1px solid rgb(205 115 215 / 40%);
}

SCSS

$orchid: #cd73d7;
$orchid-light: #e6b9eb;
$orchid-dark: #673a6c;

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

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

LESS

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

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

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-orchid-50: #f5e3f7;
  --color-orchid-100: #f0d5f3;
  --color-orchid-200: #ebc7ef;
  --color-orchid-300: #e1abe7;
  --color-orchid-400: #d78fdf;
  --color-orchid-500: #cd73d7;
  --color-orchid-600: #b968c2;
  --color-orchid-700: #905197;
  --color-orchid-800: #673a6c;
  --color-orchid-900: #3e2341;
}

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

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

Bootstrap

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

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

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

Flutter

import 'package:flutter/material.dart';

const Color orchid = Color(0xFFCD73D7);

// As a MaterialColor swatch
const MaterialColor orchidSwatch = MaterialColor(0xFFCD73D7, <int, Color>{
  50: Color(0xFFF5E3F7),
  100: Color(0xFFF0D5F3),
  200: Color(0xFFEBC7EF),
  300: Color(0xFFE1ABE7),
  400: Color(0xFFD78FDF),
  500: Color(0xFFCD73D7),
  600: Color(0xFFB968C2),
  700: Color(0xFF905197),
  800: Color(0xFF673A6C),
  900: Color(0xFF3E2341),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #cd73d7 — Orchid
    static let orchid = Color(
        red: 0.8039,
        green: 0.451,
        blue: 0.8431
    )
}

// UIKit
extension UIColor {
    static let orchid = UIColor(
        red: 0.8039,
        green: 0.451,
        blue: 0.8431,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="orchid">#CD73D7</color>
    <color name="orchid_translucent">#80CD73D7</color>
</resources>

<!-- Jetpack Compose -->
val Orchid = Color(0xFFCD73D7)

JavaScript

export const ORCHID = {
  hex: "#cd73d7",
  rgb: [205, 115, 215],
  hsl: [294, 56, 65],
  oklch: "oklch(69.12% 0.1695 323.44)",
};

JSON tokens

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