#D418BB Medium Orchid
rgb(212, 24, 187)
Color conversions
- HEX
- #D418BB
- RGB
- rgb(212, 24, 187)
- RGBA
- rgba(212, 24, 187, 1)
- HSL
- hsl(308, 80%, 46%)
- HSV / HSB
- hsv(308, 89%, 83%)
- CMYK
- cmyk(0%, 89%, 12%, 17%)
Wide-gamut spaces
- XYZ
- xyz(36.448, 18.242, 48.606)
- LAB
- lab(49.79 79.69 -39.42)
- LCH
- lch(49.79 88.91 333.68)
- OKLAB
- oklab(60.17% 0.2333 -0.1081)
- OKLCH
- oklch(60.17% 0.2571 335.15)
- Nearest name
- Medium 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
#d418bb1a
#d418bb33
#d418bb4d
#d418bb66
#d418bb80
#d418bb99
#d418bbb3
#d418bbcc
#d418bbe6
#d418bbff
Accessibility and contrast
On white
4.52:1
Body text AA · Large text AA
On black
4.65:1
Body text AA · Large text AA
White-on-color contrast is 4.52: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-medium-orchid: #d418bb;
--color-medium-orchid-rgb: 212 24 187;
--color-medium-orchid-hsl: 308 80% 46%;
--color-medium-orchid-oklch: 60.17% 0.2571 335.15;
}
.element {
color: #d418bb;
background-color: hsl(308, 80%, 46%);
border: 1px solid rgb(212 24 187 / 40%);
}SCSS
$medium-orchid: #d418bb;
$medium-orchid-light: #ea8cdd;
$medium-orchid-dark: #6a0c5e;
.element {
color: $medium-orchid;
background: rgba($medium-orchid, 0.12);
&:hover {
color: darken($medium-orchid, 8%);
}
}LESS
@medium-orchid: #d418bb;
@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: #f6d1f1;
--color-medium-orchid-100: #f2baeb;
--color-medium-orchid-200: #eea3e4;
--color-medium-orchid-300: #e574d6;
--color-medium-orchid-400: #dd46c9;
--color-medium-orchid-500: #d418bb;
--color-medium-orchid-600: #bf16a8;
--color-medium-orchid-700: #941183;
--color-medium-orchid-800: #6a0c5e;
--color-medium-orchid-900: #400738;
}
/* Usage */
<div class="bg-medium-orchid-500 text-medium-orchid-50 ring-medium-orchid-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#d418bb]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$medium-orchid: #d418bb;
$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(0xFFD418BB);
// As a MaterialColor swatch
const MaterialColor mediumOrchidSwatch = MaterialColor(0xFFD418BB, <int, Color>{
50: Color(0xFFF6D1F1),
100: Color(0xFFF2BAEB),
200: Color(0xFFEEA3E4),
300: Color(0xFFE574D6),
400: Color(0xFFDD46C9),
500: Color(0xFFD418BB),
600: Color(0xFFBF16A8),
700: Color(0xFF941183),
800: Color(0xFF6A0C5E),
900: Color(0xFF400738),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #d418bb — Medium Orchid
static let mediumOrchid = Color(
red: 0.8314,
green: 0.0941,
blue: 0.7333
)
}
// UIKit
extension UIColor {
static let mediumOrchid = UIColor(
red: 0.8314,
green: 0.0941,
blue: 0.7333,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="medium_orchid">#D418BB</color>
<color name="medium_orchid_translucent">#80D418BB</color>
</resources>
<!-- Jetpack Compose -->
val MediumOrchid = Color(0xFFD418BB)JavaScript
export const MEDIUM_ORCHID = {
hex: "#d418bb",
rgb: [212, 24, 187],
hsl: [308, 80, 46],
oklch: "oklch(60.17% 0.2571 335.15)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"medium-orchid": {
"$type": "color",
"$value": "#d418bb",
"$description": "Medium Orchid — generated by ColorVerse AI"
}
}