CSS Named Color

Copy-ready color values

HEX#98FB98
RGBrgb(152, 251, 152)
HSLhsl(120, 93%, 79%)
HSVhsv(120, 39%, 98%)
CMYK approx.cmyk(39, 0, 39, 2)

Color value table

FormatValueCopy
HEX#98FB98
RGBrgb(152, 251, 152)
HSLhsl(120, 93%, 79%)
HSVhsv(120, 39%, 98%)
CMYK approx.cmyk(39, 0, 39, 2)
CSS keywordpalegreen

Contrast and classification

LightLightness1.27:1Contrast with white16.59:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#A2FBA2

White 30%
#B7FCB7

White 70%
#E0FEE0

White 90%
#F5FFF5

Black 10%
#89E289

Black 30%
#6AB06A

Black 70%
#2E4B2E

Black 90%
#0F190F

Harmony palettes

Complementary

#670467
#8B408B

Analogous

#A4FB98
#98EFA4

Triadic

#FB9898
#9898FB

Split complementary

#823182
#540354

Using Palegreen

Palegreen 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-palegreen: #98fb98;
}

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

$palegreen: #98fb98;

// Tailwind arbitrary value
class="bg-[#98fb98] text-white"