CSS Named Color

Copy-ready color values

HEX#40E0D0
RGBrgb(64, 224, 208)
HSLhsl(174, 72%, 56%)
HSVhsv(174, 71%, 88%)
CMYK approx.cmyk(71, 0, 7, 12)

Color value table

FormatValueCopy
HEX#40E0D0
RGBrgb(64, 224, 208)
HSLhsl(174, 72%, 56%)
HSVhsv(174, 71%, 88%)
CMYK approx.cmyk(71, 0, 7, 12)
CSS keywordturquoise

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
#CE5561

Analogous

#53E0BF
#40DED2

Triadic

#E0D040
#D040E0

Split complementary

#CB4754
#9D1927

Using 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"