CSS Named Color

Copy-ready color values

HEX#9932CC
RGBrgb(153, 50, 204)
HSLhsl(280, 61%, 50%)
HSVhsv(280, 75%, 80%)
CMYK approx.cmyk(25, 75, 0, 20)

Color value table

FormatValueCopy
HEX#9932CC
RGBrgb(153, 50, 204)
HSLhsl(280, 61%, 50%)
HSVhsv(280, 75%, 80%)
CMYK approx.cmyk(25, 75, 0, 20)
CSS keyworddarkorchid

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
#8BD964

Analogous

#8D32C6
#9944BA

Triadic

#32CC99
#CC9932

Split complementary

#82D658
#54A82A

Using 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"