CSS Named Color
Copy-ready color values
HEX
#8FBC8FRGB
rgb(143, 188, 143)HSL
hsl(120, 25%, 65%)HSV
hsv(120, 24%, 74%)CMYK approx.
cmyk(24, 0, 24, 26)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #8FBC8F | |
| RGB | rgb(143, 188, 143) | |
| HSL | hsl(120, 25%, 65%) | |
| HSV | hsv(120, 24%, 74%) | |
| CMYK approx. | cmyk(24, 0, 24, 26) | |
| CSS keyword | darkseagreen |
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#927092Analogous
#94BC8F#8FB794Triadic
#BC8F8F#8F8FBCSplit complementary
#8A658A#5C375CUsing 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"