Web Safe Color
Copy-ready color values
HEX
#9900CCRGB
rgb(153, 0, 204)HSL
hsl(285, 100%, 40%)HSV
hsv(285, 100%, 80%)CMYK approx.
cmyk(25, 100, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #9900CC | |
| RGB | rgb(153, 0, 204) | |
| HSL | hsl(285, 100%, 40%) | |
| HSV | hsv(285, 100%, 80%) | |
| CMYK approx. | cmyk(25, 100, 0, 20) | |
| CSS keyword | 9900cc |
Contrast and classification
DarkLightness6.51:1Contrast with white3.23:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#A31AD1
White 30%#B84DDB
White 70%#E0B3F0
White 90%#F5E6FA
Black 10%#8A00B8
Black 30%#6B008F
Black 70%#2E003D
Black 90%#0F0014
Harmony palettes
Complementary
#66FF33#8BFF64Analogous
#8700C6#9918B4Triadic
#00CC99#CC9900Split complementary
#82FF58#54D12AUsing 9900cc
9900cc 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-9900cc: #9900cc;
}
.button-primary {
background: var(--color-9900cc);
color: #ffffff;
}
$9900cc: #9900cc;
// Tailwind arbitrary value
class="bg-[#9900cc] text-white"