CSS Named Color

Copy-ready color values

HEX#32CD32
RGBrgb(50, 205, 50)
HSLhsl(120, 61%, 50%)
HSVhsv(120, 76%, 80%)
CMYK approx.cmyk(76, 0, 76, 20)

Color value table

FormatValueCopy
HEX#32CD32
RGBrgb(50, 205, 50)
HSLhsl(120, 61%, 50%)
HSVhsv(120, 76%, 80%)
CMYK approx.cmyk(76, 0, 76, 20)
CSS keywordlimegreen

Contrast and classification

DarkLightness2.12:1Contrast with white9.91:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#47D247

White 30%
#70DC70

White 70%
#C2F0C2

White 90%
#EBFAEB

Black 10%
#2DB92D

Black 30%
#239023

Black 70%
#0F3E0F

Black 90%
#051505

Harmony palettes

Complementary

#CD32CD
#D963D9

Analogous

#45CD32
#32BA45

Triadic

#CD3232
#3232CD

Split complementary

#D657D6
#A829A8

Using Limegreen

Limegreen 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-limegreen: #32cd32;
}

.button-primary {
  background: var(--color-limegreen);
  color: #000000;
}

$limegreen: #32cd32;

// Tailwind arbitrary value
class="bg-[#32cd32] text-white"