Web Safe Color
Copy-ready color values
HEX
#993399RGB
rgb(153, 51, 153)HSL
hsl(300, 50%, 40%)HSV
hsv(300, 67%, 60%)CMYK approx.
cmyk(0, 67, 0, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #993399 | |
| RGB | rgb(153, 51, 153) | |
| HSL | hsl(300, 50%, 40%) | |
| HSV | hsv(300, 67%, 60%) | |
| CMYK approx. | cmyk(0, 67, 0, 40) | |
| CSS keyword | 993399 |
Contrast and classification
DarkLightness6.39:1Contrast with white3.29:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#A347A3
White 30%#B870B8
White 70%#E0C2E0
White 90%#F5EBF5
Black 10%#8A2E8A
Black 30%#6B246B
Black 70%#2E0F2E
Black 90%#0F050F
Harmony palettes
Complementary
#66CC66#8BD88BAnalogous
#8D3399#993F8DTriadic
#339999#999933Split complementary
#82D582#54A754Using 993399
993399 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-993399: #993399;
}
.button-primary {
background: var(--color-993399);
color: #ffffff;
}
$993399: #993399;
// Tailwind arbitrary value
class="bg-[#993399] text-white"