Web Safe Color
Copy-ready color values
HEX
#9933CCRGB
rgb(153, 51, 204)HSL
hsl(280, 60%, 50%)HSV
hsv(280, 75%, 80%)CMYK approx.
cmyk(25, 75, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #9933CC | |
| RGB | rgb(153, 51, 204) | |
| HSL | hsl(280, 60%, 50%) | |
| HSV | hsv(280, 75%, 80%) | |
| CMYK approx. | cmyk(25, 75, 0, 20) | |
| CSS keyword | 9933cc |
Contrast and classification
DarkLightness5.68:1Contrast with white3.70:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#A347D1
White 30%#B870DB
White 70%#E0C2F0
White 90%#F5EBFA
Black 10%#8A2EB8
Black 30%#6B248F
Black 70%#2E0F3D
Black 90%#0F0514
Harmony palettes
Complementary
#66CC33#8BD864Analogous
#8D33C6#9945BATriadic
#33CC99#CC9933Split complementary
#82D558#54A72AUsing 9933cc
9933cc 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-9933cc: #9933cc;
}
.button-primary {
background: var(--color-9933cc);
color: #ffffff;
}
$9933cc: #9933cc;
// Tailwind arbitrary value
class="bg-[#9933cc] text-white"