#D64FFF Dark Orchid
rgb(214, 79, 255)
Color conversions
- HEX
- #D64FFF
- RGB
- rgb(214, 79, 255)
- RGBA
- rgba(214, 79, 255, 1)
- HSL
- hsl(286, 100%, 65%)
- HSV / HSB
- hsv(286, 69%, 100%)
- CMYK
- cmyk(16%, 69%, 0%, 0%)
Wide-gamut spaces
- XYZ
- xyz(48.575, 27.11, 97.262)
- LAB
- lab(59.08 76.15 -63.17)
- LCH
- lch(59.08 98.94 320.32)
- OKLAB
- oklab(68.06% 0.1916 -0.1775)
- OKLCH
- oklch(68.06% 0.2612 317.19)
- Nearest name
- Dark Orchid
Shades, tints and tones
Color harmonies
The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.
Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.
Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.
The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.
Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.
Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.
Similar colors
Opacity variations
#d64fff1a
#d64fff33
#d64fff4d
#d64fff66
#d64fff80
#d64fff99
#d64fffb3
#d64fffcc
#d64fffe6
#d64fffff
Accessibility and contrast
On white
3.27:1
Body text AA Large · Large text AA
On black
6.42:1
Body text AA · Large text AA
White-on-color contrast is 3.27: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: #d64fff;
--color-dark-orchid-rgb: 214 79 255;
--color-dark-orchid-hsl: 286 100% 65%;
--color-dark-orchid-oklch: 68.06% 0.2612 317.19;
}
.element {
color: #d64fff;
background-color: hsl(286, 100%, 65%);
border: 1px solid rgb(214 79 255 / 40%);
}SCSS
$dark-orchid: #d64fff;
$dark-orchid-light: #eba7ff;
$dark-orchid-dark: #6b2880;
.element {
color: $dark-orchid;
background: rgba($dark-orchid, 0.12);
&:hover {
color: darken($dark-orchid, 8%);
}
}LESS
@dark-orchid: #d64fff;
@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: #f7dcff;
--color-dark-orchid-100: #f3caff;
--color-dark-orchid-200: #efb9ff;
--color-dark-orchid-300: #e695ff;
--color-dark-orchid-400: #de72ff;
--color-dark-orchid-500: #d64fff;
--color-dark-orchid-600: #c147e6;
--color-dark-orchid-700: #9637b3;
--color-dark-orchid-800: #6b2880;
--color-dark-orchid-900: #40184d;
}
/* Usage */
<div class="bg-dark-orchid-500 text-dark-orchid-50 ring-dark-orchid-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#d64fff]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$dark-orchid: #d64fff;
$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(0xFFD64FFF);
// As a MaterialColor swatch
const MaterialColor darkOrchidSwatch = MaterialColor(0xFFD64FFF, <int, Color>{
50: Color(0xFFF7DCFF),
100: Color(0xFFF3CAFF),
200: Color(0xFFEFB9FF),
300: Color(0xFFE695FF),
400: Color(0xFFDE72FF),
500: Color(0xFFD64FFF),
600: Color(0xFFC147E6),
700: Color(0xFF9637B3),
800: Color(0xFF6B2880),
900: Color(0xFF40184D),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #d64fff — Dark Orchid
static let darkOrchid = Color(
red: 0.8392,
green: 0.3098,
blue: 1
)
}
// UIKit
extension UIColor {
static let darkOrchid = UIColor(
red: 0.8392,
green: 0.3098,
blue: 1,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="dark_orchid">#D64FFF</color>
<color name="dark_orchid_translucent">#80D64FFF</color>
</resources>
<!-- Jetpack Compose -->
val DarkOrchid = Color(0xFFD64FFF)JavaScript
export const DARK_ORCHID = {
hex: "#d64fff",
rgb: [214, 79, 255],
hsl: [286, 100, 65],
oklch: "oklch(68.06% 0.2612 317.19)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"dark-orchid": {
"$type": "color",
"$value": "#d64fff",
"$description": "Dark Orchid — generated by ColorVerse AI"
}
}