Web Safe Color
Copy-ready color values
HEX
#993300RGB
rgb(153, 51, 0)HSL
hsl(20, 100%, 30%)HSV
hsv(20, 100%, 60%)CMYK approx.
cmyk(0, 67, 100, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #993300 | |
| RGB | rgb(153, 51, 0) | |
| HSL | hsl(20, 100%, 30%) | |
| HSV | hsv(20, 100%, 60%) | |
| CMYK approx. | cmyk(0, 67, 100, 40) | |
| CSS keyword | 993300 |
Contrast and classification
DarkLightness7.43:1Contrast with white2.83:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#A3471A
White 30%#B8704D
White 70%#E0C2B3
White 90%#F5EBE6
Black 10%#8A2E00
Black 30%#6B2400
Black 70%#2E0F00
Black 90%#0F0500
Harmony palettes
Complementary
#66CCFF#8BD8FFAnalogous
#8D3312#992D06Triadic
#330099#009933Split complementary
#82D5FF#54A7D1Using 993300
993300 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-993300: #993300;
}
.button-primary {
background: var(--color-993300);
color: #ffffff;
}
$993300: #993300;
// Tailwind arbitrary value
class="bg-[#993300] text-white"