Web Safe Color
Copy-ready color values
HEX
#99CC99RGB
rgb(153, 204, 153)HSL
hsl(120, 33%, 70%)HSV
hsv(120, 25%, 80%)CMYK approx.
cmyk(25, 0, 25, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #99CC99 | |
| RGB | rgb(153, 204, 153) | |
| HSL | hsl(120, 33%, 70%) | |
| HSV | hsv(120, 25%, 80%) | |
| CMYK approx. | cmyk(25, 0, 25, 20) | |
| CSS keyword | 99cc99 |
Contrast and classification
LightLightness1.83:1Contrast with white11.45:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#A3D1A3
White 30%#B8DBB8
White 70%#E0F0E0
White 90%#F5FAF5
Black 10%#8AB88A
Black 30%#6B8F6B
Black 70%#2E3D2E
Black 90%#0F140F
Harmony palettes
Complementary
#663366#8B648BAnalogous
#9FCC99#99C69FTriadic
#CC9999#9999CCSplit complementary
#825882#542A54Using 99cc99
99cc99 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-99cc99: #99cc99;
}
.button-primary {
background: var(--color-99cc99);
color: #000000;
}
$99cc99: #99cc99;
// Tailwind arbitrary value
class="bg-[#99cc99] text-white"