CSS Named Color / Web Safe Color
Copy-ready color values
HEX
#00FF00RGB
rgb(0, 255, 0)HSL
hsl(120, 100%, 50%)HSV
hsv(120, 100%, 100%)CMYK approx.
cmyk(100, 0, 100, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #00FF00 | |
| RGB | rgb(0, 255, 0) | |
| HSL | hsl(120, 100%, 50%) | |
| HSV | hsv(120, 100%, 100%) | |
| CMYK approx. | cmyk(100, 0, 100, 0) | |
| CSS keyword | lime |
Contrast and classification
DarkLightness1.37:1Contrast with white15.30:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#1AFF1A
White 30%#4DFF4D
White 70%#B3FFB3
White 90%#E6FFE6
Black 10%#00E600
Black 30%#00B300
Black 70%#004D00
Black 90%#001A00
Harmony palettes
Complementary
#FF00FF#FF3DFFAnalogous
#1FFF00#00E01FTriadic
#FF0000#0000FFSplit complementary
#FF2EFF#D100D1Using Lime
Lime 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-lime: #00ff00;
}
.button-primary {
background: var(--color-lime);
color: #000000;
}
$lime: #00ff00;
// Tailwind arbitrary value
class="bg-[#00ff00] text-white"