CSS Named Color
Copy-ready color values
HEX
#90EE90RGB
rgb(144, 238, 144)HSL
hsl(120, 73%, 75%)HSV
hsv(120, 39%, 93%)CMYK approx.
cmyk(39, 0, 39, 7)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #90EE90 | |
| RGB | rgb(144, 238, 144) | |
| HSL | hsl(120, 73%, 75%) | |
| HSV | hsv(120, 39%, 93%) | |
| CMYK approx. | cmyk(39, 0, 39, 7) | |
| CSS keyword | lightgreen |
Contrast and classification
LightLightness1.42:1Contrast with white14.82:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#9BF09B
White 30%#B1F3B1
White 70%#DEFADE
White 90%#F4FDF4
Black 10%#82D682
Black 30%#65A765
Black 70%#2B472B
Black 90%#0E180E
Harmony palettes
Complementary
#6F116F#924A92Analogous
#9BEE90#90E39BTriadic
#EE9090#9090EESplit complementary
#893C89#5B0E5BUsing Lightgreen
Lightgreen 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-lightgreen: #90ee90;
}
.button-primary {
background: var(--color-lightgreen);
color: #000000;
}
$lightgreen: #90ee90;
// Tailwind arbitrary value
class="bg-[#90ee90] text-white"