Web Safe Color
Copy-ready color values
HEX
#999933RGB
rgb(153, 153, 51)HSL
hsl(60, 50%, 40%)HSV
hsv(60, 67%, 60%)CMYK approx.
cmyk(0, 0, 67, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #999933 | |
| RGB | rgb(153, 153, 51) | |
| HSL | hsl(60, 50%, 40%) | |
| HSV | hsv(60, 67%, 60%) | |
| CMYK approx. | cmyk(0, 0, 67, 40) | |
| CSS keyword | 999933 |
Contrast and classification
DarkLightness3.02:1Contrast with white6.96:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#A3A347
White 30%#B8B870
White 70%#E0E0C2
White 90%#F5F5EB
Black 10%#8A8A2E
Black 30%#6B6B24
Black 70%#2E2E0F
Black 90%#0F0F05
Harmony palettes
Complementary
#6666CC#8B8BD8Analogous
#99993F#998D3FTriadic
#993399#339999Split complementary
#8282D5#5454A7Using 999933
999933 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-999933: #999933;
}
.button-primary {
background: var(--color-999933);
color: #000000;
}
$999933: #999933;
// Tailwind arbitrary value
class="bg-[#999933] text-white"