#B643DF Dark Orchid

rgb(182, 67, 223)

Color conversions

HEX
#B643DF
RGB
rgb(182, 67, 223)
RGBA
rgba(182, 67, 223, 1)
HSL
hsl(284, 71%, 57%)
HSV / HSB
hsv(284, 70%, 87%)
CMYK
cmyk(18%, 70%, 0%, 13%)

Wide-gamut spaces

XYZ
xyz(34.616, 19.288, 71.697)
LAB
lab(51.02 68.17 -58.44)
LCH
lch(51.02 89.79 319.4)
OKLAB
oklab(60.78% 0.1683 -0.1645)
OKLCH
oklch(60.78% 0.2353 315.65)
Nearest name
Dark 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

#b643df1a

#b643df33

#b643df4d

#b643df66

#b643df80

#b643df99

#b643dfb3

#b643dfcc

#b643dfe6

#b643dfff

Accessibility and contrast

On white

4.32:1

Body text AA Large · Large text AA

On black

4.86:1

Body text AA · Large text AA

White-on-color contrast is 4.32: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-dark-orchid: #b643df;
  --color-dark-orchid-rgb: 182 67 223;
  --color-dark-orchid-hsl: 284 71% 57%;
  --color-dark-orchid-oklch: 60.78% 0.2353 315.65;
}

.element {
  color: #b643df;
  background-color: hsl(284, 71%, 57%);
  border: 1px solid rgb(182 67 223 / 40%);
}

SCSS

$dark-orchid: #b643df;
$dark-orchid-light: #dba1ef;
$dark-orchid-dark: #5b2270;

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

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

LESS

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

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

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-dark-orchid-50: #f0d9f9;
  --color-dark-orchid-100: #e9c7f5;
  --color-dark-orchid-200: #e2b4f2;
  --color-dark-orchid-300: #d38eec;
  --color-dark-orchid-400: #c569e5;
  --color-dark-orchid-500: #b643df;
  --color-dark-orchid-600: #a43cc9;
  --color-dark-orchid-700: #7f2f9c;
  --color-dark-orchid-800: #5b2270;
  --color-dark-orchid-900: #371443;
}

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

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

Bootstrap

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

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

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

Flutter

import 'package:flutter/material.dart';

const Color darkOrchid = Color(0xFFB643DF);

// As a MaterialColor swatch
const MaterialColor darkOrchidSwatch = MaterialColor(0xFFB643DF, <int, Color>{
  50: Color(0xFFF0D9F9),
  100: Color(0xFFE9C7F5),
  200: Color(0xFFE2B4F2),
  300: Color(0xFFD38EEC),
  400: Color(0xFFC569E5),
  500: Color(0xFFB643DF),
  600: Color(0xFFA43CC9),
  700: Color(0xFF7F2F9C),
  800: Color(0xFF5B2270),
  900: Color(0xFF371443),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #b643df — Dark Orchid
    static let darkOrchid = Color(
        red: 0.7137,
        green: 0.2627,
        blue: 0.8745
    )
}

// UIKit
extension UIColor {
    static let darkOrchid = UIColor(
        red: 0.7137,
        green: 0.2627,
        blue: 0.8745,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="dark_orchid">#B643DF</color>
    <color name="dark_orchid_translucent">#80B643DF</color>
</resources>

<!-- Jetpack Compose -->
val DarkOrchid = Color(0xFFB643DF)

JavaScript

export const DARK_ORCHID = {
  hex: "#b643df",
  rgb: [182, 67, 223],
  hsl: [284, 71, 57],
  oklch: "oklch(60.78% 0.2353 315.65)",
};

JSON tokens

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