Web Safe Color
Copy-ready color values
HEX
#00CC33RGB
rgb(0, 204, 51)HSL
hsl(135, 100%, 40%)HSV
hsv(135, 100%, 80%)CMYK approx.
cmyk(100, 0, 75, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #00CC33 | |
| RGB | rgb(0, 204, 51) | |
| HSL | hsl(135, 100%, 40%) | |
| HSV | hsv(135, 100%, 80%) | |
| CMYK approx. | cmyk(100, 0, 75, 20) | |
| CSS keyword | 00cc33 |
Contrast and classification
DarkLightness2.17:1Contrast with white9.68:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#1AD147
White 30%#4DDB70
White 70%#B3F0C2
White 90%#E6FAEB
Black 10%#00B82E
Black 30%#008F24
Black 70%#003D0F
Black 90%#001405
Harmony palettes
Complementary
#FF33CC#FF64D8Analogous
#18CC2D#00BA45Triadic
#CC3300#3300CCSplit complementary
#FF58D5#D12AA7Using 00cc33
00cc33 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-00cc33: #00cc33;
}
.button-primary {
background: var(--color-00cc33);
color: #000000;
}
$00cc33: #00cc33;
// Tailwind arbitrary value
class="bg-[#00cc33] text-white"