CSS Named Color
Copy-ready color values
HEX
#20B2AARGB
rgb(32, 178, 170)HSL
hsl(177, 70%, 41%)HSV
hsv(177, 82%, 70%)CMYK approx.
cmyk(82, 0, 4, 30)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #20B2AA | |
| RGB | rgb(32, 178, 170) | |
| HSL | hsl(177, 70%, 41%) | |
| HSV | hsv(177, 82%, 70%) | |
| CMYK approx. | cmyk(82, 0, 4, 30) | |
| CSS keyword | lightseagreen |
Contrast and classification
DarkLightness2.62:1Contrast with white8.01:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#36BAB3
White 30%#63C9C4
White 70%#BCE8E6
White 90%#E9F7F7
Black 10%#1DA099
Black 30%#167D77
Black 70%#0A3533
Black 90%#031211
Harmony palettes
Complementary
#DF4D55#E7787EAnalogous
#32B299#20B1ABTriadic
#B2AA20#AA20B2Split complementary
#E56D74#B73F46Using Lightseagreen
Lightseagreen 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-lightseagreen: #20b2aa;
}
.button-primary {
background: var(--color-lightseagreen);
color: #000000;
}
$lightseagreen: #20b2aa;
// Tailwind arbitrary value
class="bg-[#20b2aa] text-white"