CSS Named Color

Copy-ready color values

HEX#90EE90
RGBrgb(144, 238, 144)
HSLhsl(120, 73%, 75%)
HSVhsv(120, 39%, 93%)
CMYK approx.cmyk(39, 0, 39, 7)

Color value table

FormatValueCopy
HEX#90EE90
RGBrgb(144, 238, 144)
HSLhsl(120, 73%, 75%)
HSVhsv(120, 39%, 93%)
CMYK approx.cmyk(39, 0, 39, 7)
CSS keywordlightgreen

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
#924A92

Analogous

#9BEE90
#90E39B

Triadic

#EE9090
#9090EE

Split complementary

#893C89
#5B0E5B

Using 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"