CSS Named Color

Copy-ready color values

HEX#8FBC8F
RGBrgb(143, 188, 143)
HSLhsl(120, 25%, 65%)
HSVhsv(120, 24%, 74%)
CMYK approx.cmyk(24, 0, 24, 26)

Color value table

FormatValueCopy
HEX#8FBC8F
RGBrgb(143, 188, 143)
HSLhsl(120, 25%, 65%)
HSVhsv(120, 24%, 74%)
CMYK approx.cmyk(24, 0, 24, 26)
CSS keyworddarkseagreen

Contrast and classification

LightLightness2.15:1Contrast with white9.76:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#9AC39A

White 30%
#B1D0B1

White 70%
#DDEBDD

White 90%
#F4F8F4

Black 10%
#81A981

Black 30%
#648464

Black 70%
#2B382B

Black 90%
#0E130E

Harmony palettes

Complementary

#704370
#927092

Analogous

#94BC8F
#8FB794

Triadic

#BC8F8F
#8F8FBC

Split complementary

#8A658A
#5C375C

Using Darkseagreen

Darkseagreen 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-darkseagreen: #8fbc8f;
}

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

$darkseagreen: #8fbc8f;

// Tailwind arbitrary value
class="bg-[#8fbc8f] text-white"