Web Safe Color
Copy-ready color values
HEX
#9900FFRGB
rgb(153, 0, 255)HSL
hsl(276, 100%, 50%)HSV
hsv(276, 100%, 100%)CMYK approx.
cmyk(40, 100, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #9900FF | |
| RGB | rgb(153, 0, 255) | |
| HSL | hsl(276, 100%, 50%) | |
| HSV | hsv(276, 100%, 100%) | |
| CMYK approx. | cmyk(40, 100, 0, 0) | |
| CSS keyword | 9900ff |
Contrast and classification
DarkLightness5.53:1Contrast with white3.80:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#A31AFF
White 30%#B84DFF
White 70%#E0B3FF
White 90%#F5E6FF
Black 10%#8A00E6
Black 30%#6B00B3
Black 70%#2E004D
Black 90%#0F001A
Harmony palettes
Complementary
#66FF00#8BFF3DAnalogous
#8700F3#991FE0Triadic
#00FF99#FF9900Split complementary
#82FF2E#54D100Using 9900ff
9900ff 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-9900ff: #9900ff;
}
.button-primary {
background: var(--color-9900ff);
color: #ffffff;
}
$9900ff: #9900ff;
// Tailwind arbitrary value
class="bg-[#9900ff] text-white"