CSS Named Color

Copy-ready color values

HEX#00CED1
RGBrgb(0, 206, 209)
HSLhsl(181, 100%, 41%)
HSVhsv(181, 100%, 82%)
CMYK approx.cmyk(100, 1, 0, 18)

Color value table

FormatValueCopy
HEX#00CED1
RGBrgb(0, 206, 209)
HSLhsl(181, 100%, 41%)
HSVhsv(181, 100%, 82%)
CMYK approx.cmyk(100, 1, 0, 18)
CSS keyworddarkturquoise

Contrast and classification

DarkLightness1.95:1Contrast with white10.75:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#1AD3D6

White 30%
#4DDDDF

White 70%
#B3F0F1

White 90%
#E6FAFA

Black 10%
#00B9BC

Black 30%
#009092

Black 70%
#003E3F

Black 90%
#001515

Harmony palettes

Complementary

#FF312E
#FF6260

Analogous

#19CEB8
#00CED1

Triadic

#CED100
#D100CE

Split complementary

#FF5654
#D12826

Using Darkturquoise

Darkturquoise 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-darkturquoise: #00ced1;
}

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

$darkturquoise: #00ced1;

// Tailwind arbitrary value
class="bg-[#00ced1] text-white"