Web Safe Color
Copy-ready color values
HEX
#CC3300RGB
rgb(204, 51, 0)HSL
hsl(15, 100%, 40%)HSV
hsv(15, 100%, 80%)CMYK approx.
cmyk(0, 75, 100, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CC3300 | |
| RGB | rgb(204, 51, 0) | |
| HSL | hsl(15, 100%, 40%) | |
| HSV | hsv(15, 100%, 80%) | |
| CMYK approx. | cmyk(0, 75, 100, 20) | |
| CSS keyword | cc3300 |
Contrast and classification
DarkLightness5.20:1Contrast with white4.04:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#D1471A
White 30%#DB704D
White 70%#F0C2B3
White 90%#FAEBE6
Black 10%#B82E00
Black 30%#8F2400
Black 70%#3D0F00
Black 90%#140500
Harmony palettes
Complementary
#33CCFF#64D8FFAnalogous
#BA3318#CC2D06Triadic
#3300CC#00CC33Split complementary
#58D5FF#2AA7D1Using Cc3300
Cc3300 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-cc3300: #cc3300;
}
.button-primary {
background: var(--color-cc3300);
color: #ffffff;
}
$cc3300: #cc3300;
// Tailwind arbitrary value
class="bg-[#cc3300] text-white"