CSS Named Color
Copy-ready color values
HEX
#40E0D0RGB
rgb(64, 224, 208)HSL
hsl(174, 72%, 56%)HSV
hsv(174, 71%, 88%)CMYK approx.
cmyk(71, 0, 7, 12)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #40E0D0 | |
| RGB | rgb(64, 224, 208) | |
| HSL | hsl(174, 72%, 56%) | |
| HSV | hsv(174, 71%, 88%) | |
| CMYK approx. | cmyk(71, 0, 7, 12) | |
| CSS keyword | turquoise |
Contrast and classification
LightLightness1.64:1Contrast with white12.79:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#53E3D5
White 30%#79E9DE
White 70%#C6F6F1
White 90%#ECFCFA
Black 10%#3ACABB
Black 30%#2D9D92
Black 70%#13433E
Black 90%#061615
Harmony palettes
Complementary
#BF1F2F#CE5561Analogous
#53E0BF#40DED2Triadic
#E0D040#D040E0Split complementary
#CB4754#9D1927Using Turquoise
Turquoise 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-turquoise: #40e0d0;
}
.button-primary {
background: var(--color-turquoise);
color: #000000;
}
$turquoise: #40e0d0;
// Tailwind arbitrary value
class="bg-[#40e0d0] text-white"