Web Safe Color
Copy-ready color values
HEX
#993366RGB
rgb(153, 51, 102)HSL
hsl(330, 50%, 40%)HSV
hsv(330, 67%, 60%)CMYK approx.
cmyk(0, 67, 33, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #993366 | |
| RGB | rgb(153, 51, 102) | |
| HSL | hsl(330, 50%, 40%) | |
| HSV | hsv(330, 67%, 60%) | |
| CMYK approx. | cmyk(0, 67, 33, 40) | |
| CSS keyword | 993366 |
Contrast and classification
DarkLightness6.95:1Contrast with white3.02:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#A34775
White 30%#B87094
White 70%#E0C2D1
White 90%#F5EBF0
Black 10%#8A2E5C
Black 30%#6B2447
Black 70%#2E0F1F
Black 90%#0F050A
Harmony palettes
Complementary
#66CC99#8BD8B1Analogous
#8D336C#993960Triadic
#336699#669933Split complementary
#82D5AB#54A77DUsing 993366
993366 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-993366: #993366;
}
.button-primary {
background: var(--color-993366);
color: #ffffff;
}
$993366: #993366;
// Tailwind arbitrary value
class="bg-[#993366] text-white"