Web Safe Color
Copy-ready color values
HEX
#66CC00RGB
rgb(102, 204, 0)HSL
hsl(90, 100%, 40%)HSV
hsv(90, 100%, 80%)CMYK approx.
cmyk(50, 0, 100, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #66CC00 | |
| RGB | rgb(102, 204, 0) | |
| HSL | hsl(90, 100%, 40%) | |
| HSV | hsv(90, 100%, 80%) | |
| CMYK approx. | cmyk(50, 0, 100, 20) | |
| CSS keyword | 66cc00 |
Contrast and classification
DarkLightness2.06:1Contrast with white10.20:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#75D11A
White 30%#94DB4D
White 70%#D1F0B3
White 90%#F0FAE6
Black 10%#5CB800
Black 30%#478F00
Black 70%#1F3D00
Black 90%#0A1400
Harmony palettes
Complementary
#9933FF#B164FFAnalogous
#72CC0C#66B418Triadic
#CC0066#0066CCSplit complementary
#AB58FF#7D2AD1Using 66cc00
66cc00 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-66cc00: #66cc00;
}
.button-primary {
background: var(--color-66cc00);
color: #000000;
}
$66cc00: #66cc00;
// Tailwind arbitrary value
class="bg-[#66cc00] text-white"