CSS Named Color
Copy-ready color values
HEX
#DA70D6RGB
rgb(218, 112, 214)HSL
hsl(302, 59%, 65%)HSV
hsv(302, 49%, 85%)CMYK approx.
cmyk(0, 49, 2, 15)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #DA70D6 | |
| RGB | rgb(218, 112, 214) | |
| HSL | hsl(302, 59%, 65%) | |
| HSV | hsv(302, 49%, 85%) | |
| CMYK approx. | cmyk(0, 49, 2, 15) | |
| CSS keyword | orchid |
Contrast and classification
LightLightness2.89:1Contrast with white7.27:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#DE7EDA
White 30%#E59BE2
White 70%#F4D4F3
White 90%#FBF1FB
Black 10%#C465C1
Black 30%#994E96
Black 70%#412240
Black 90%#160B15
Harmony palettes
Complementary
#258F29#59AA5CAnalogous
#CD70D6#DA7CCATriadic
#70D6DA#D6DA70Split complementary
#4CA350#1E7522Using Orchid
Orchid works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.
CSS, SCSS, and Tailwind examples
:root {
--color-orchid: #da70d6;
}
.button-primary {
background: var(--color-orchid);
color: #000000;
}
$orchid: #da70d6;
// Tailwind arbitrary value
class="bg-[#da70d6] text-white"