Web Safe Color
Copy-ready color values
HEX
#990099RGB
rgb(153, 0, 153)HSL
hsl(300, 100%, 30%)HSV
hsv(300, 100%, 60%)CMYK approx.
cmyk(0, 100, 0, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #990099 | |
| RGB | rgb(153, 0, 153) | |
| HSL | hsl(300, 100%, 30%) | |
| HSV | hsv(300, 100%, 60%) | |
| CMYK approx. | cmyk(0, 100, 0, 40) | |
| CSS keyword | 990099 |
Contrast and classification
DarkLightness7.46:1Contrast with white2.81:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#A31AA3
White 30%#B84DB8
White 70%#E0B3E0
White 90%#F5E6F5
Black 10%#8A008A
Black 30%#6B006B
Black 70%#2E002E
Black 90%#0F000F
Harmony palettes
Complementary
#66FF66#8BFF8BAnalogous
#870099#991287Triadic
#009999#999900Split complementary
#82FF82#54D154Using 990099
990099 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-990099: #990099;
}
.button-primary {
background: var(--color-990099);
color: #ffffff;
}
$990099: #990099;
// Tailwind arbitrary value
class="bg-[#990099] text-white"