Web Safe Color
Copy-ready color values
HEX
#990033RGB
rgb(153, 0, 51)HSL
hsl(340, 100%, 30%)HSV
hsv(340, 100%, 60%)CMYK approx.
cmyk(0, 100, 67, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #990033 | |
| RGB | rgb(153, 0, 51) | |
| HSL | hsl(340, 100%, 30%) | |
| HSV | hsv(340, 100%, 60%) | |
| CMYK approx. | cmyk(0, 100, 67, 40) | |
| CSS keyword | 990033 |
Contrast and classification
DarkLightness8.74:1Contrast with white2.40:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#A31A47
White 30%#B84D70
White 70%#E0B3C2
White 90%#F5E6EB
Black 10%#8A002E
Black 30%#6B0024
Black 70%#2E000F
Black 90%#0F0005
Harmony palettes
Complementary
#66FFCC#8BFFD8Analogous
#87003F#99062DTriadic
#003399#339900Split complementary
#82FFD5#54D1A7Using 990033
990033 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-990033: #990033;
}
.button-primary {
background: var(--color-990033);
color: #ffffff;
}
$990033: #990033;
// Tailwind arbitrary value
class="bg-[#990033] text-white"