Web Safe Color
Copy-ready color values
HEX
#993333RGB
rgb(153, 51, 51)HSL
hsl(0, 50%, 40%)HSV
hsv(0, 67%, 60%)CMYK approx.
cmyk(0, 67, 67, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #993333 | |
| RGB | rgb(153, 51, 51) | |
| HSL | hsl(0, 50%, 40%) | |
| HSV | hsv(0, 67%, 60%) | |
| CMYK approx. | cmyk(0, 67, 67, 40) | |
| CSS keyword | 993333 |
Contrast and classification
DarkLightness7.30:1Contrast with white2.88:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#A34747
White 30%#B87070
White 70%#E0C2C2
White 90%#F5EBEB
Black 10%#8A2E2E
Black 30%#6B2424
Black 70%#2E0F0F
Black 90%#0F0505
Harmony palettes
Complementary
#66CCCC#8BD8D8Analogous
#8D333F#993333Triadic
#333399#339933Split complementary
#82D5D5#54A7A7Using 993333
993333 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-993333: #993333;
}
.button-primary {
background: var(--color-993333);
color: #ffffff;
}
$993333: #993333;
// Tailwind arbitrary value
class="bg-[#993333] text-white"