CSS Named Color
Copy-ready color values
HEX
#9932CCRGB
rgb(153, 50, 204)HSL
hsl(280, 61%, 50%)HSV
hsv(280, 75%, 80%)CMYK approx.
cmyk(25, 75, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #9932CC | |
| RGB | rgb(153, 50, 204) | |
| HSL | hsl(280, 61%, 50%) | |
| HSV | hsv(280, 75%, 80%) | |
| CMYK approx. | cmyk(25, 75, 0, 20) | |
| CSS keyword | darkorchid |
Contrast and classification
DarkLightness5.70:1Contrast with white3.68:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#A347D1
White 30%#B870DB
White 70%#E0C2F0
White 90%#F5EBFA
Black 10%#8A2DB8
Black 30%#6B238F
Black 70%#2E0F3D
Black 90%#0F0514
Harmony palettes
Complementary
#66CD33#8BD964Analogous
#8D32C6#9944BATriadic
#32CC99#CC9932Split complementary
#82D658#54A82AUsing Darkorchid
Darkorchid 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-darkorchid: #9932cc;
}
.button-primary {
background: var(--color-darkorchid);
color: #ffffff;
}
$darkorchid: #9932cc;
// Tailwind arbitrary value
class="bg-[#9932cc] text-white"