Web Safe Color
Copy-ready color values
HEX
#990066RGB
rgb(153, 0, 102)HSL
hsl(320, 100%, 30%)HSV
hsv(320, 100%, 60%)CMYK approx.
cmyk(0, 100, 33, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #990066 | |
| RGB | rgb(153, 0, 102) | |
| HSL | hsl(320, 100%, 30%) | |
| HSV | hsv(320, 100%, 60%) | |
| CMYK approx. | cmyk(0, 100, 33, 40) | |
| CSS keyword | 990066 |
Contrast and classification
DarkLightness8.25:1Contrast with white2.55:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#A31A75
White 30%#B84D94
White 70%#E0B3D1
White 90%#F5E6F0
Black 10%#8A005C
Black 30%#6B0047
Black 70%#2E001F
Black 90%#0F000A
Harmony palettes
Complementary
#66FF99#8BFFB1Analogous
#87006C#990C5ATriadic
#006699#669900Split complementary
#82FFAB#54D17DUsing 990066
990066 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-990066: #990066;
}
.button-primary {
background: var(--color-990066);
color: #ffffff;
}
$990066: #990066;
// Tailwind arbitrary value
class="bg-[#990066] text-white"