Web Safe Color
Copy-ready color values
HEX
#CC0033RGB
rgb(204, 0, 51)HSL
hsl(345, 100%, 40%)HSV
hsv(345, 100%, 80%)CMYK approx.
cmyk(0, 100, 75, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC0033 | |
| RGB | rgb(204, 0, 51) | |
| HSL | hsl(345, 100%, 40%) | |
| HSV | hsv(345, 100%, 80%) | |
| CMYK approx. | cmyk(0, 100, 75, 20) | |
| CSS keyword | cc0033 |
Contrast and classification
DarkLightness5.81:1Contrast with white3.62:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#D11A47
White 30%#DB4D70
White 70%#F0B3C2
White 90%#FAE6EB
Black 10%#B8002E
Black 30%#8F0024
Black 70%#3D000F
Black 90%#140005
Harmony palettes
Complementary
#33FFCC#64FFD8Analogous
#B40045#CC062DTriadic
#0033CC#33CC00Split complementary
#58FFD5#2AD1A7Using Cc0033
Cc0033 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-cc0033: #cc0033;
}
.button-primary {
background: var(--color-cc0033);
color: #ffffff;
}
$cc0033: #cc0033;
// Tailwind arbitrary value
class="bg-[#cc0033] text-white"